summaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
authorPeter Eisentraut2021-03-17 07:17:33 +0000
committerPeter Eisentraut2021-03-17 07:17:33 +0000
commite1ae40f381d0582981b1e63856bd4b060cfe2d53 (patch)
treed08b669dbf7da83e2481c548b8bf4cf1e84f3224 /src/backend/commands
parent378802e3713c6c0fce31d2390c134cd5d7c30157 (diff)
Small error message improvement
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/tablecmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c
index 559fa1d2e51..ffb1308a0c0 100644
--- a/src/backend/commands/tablecmds.c
+++ b/src/backend/commands/tablecmds.c
@@ -16673,7 +16673,7 @@ AttachPartitionEnsureIndexes(Relation rel, Relation attachrel)
errmsg("cannot attach foreign table \"%s\" as partition of partitioned table \"%s\"",
RelationGetRelationName(attachrel),
RelationGetRelationName(rel)),
- errdetail("Table \"%s\" contains unique indexes.",
+ errdetail("Partitioned table \"%s\" contains unique indexes.",
RelationGetRelationName(rel))));
index_close(idxRel, AccessShareLock);
}