mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Add missing error code to "cannot attach index ..." error.
ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE was used in an ereport with the same message but different errdetail a few lines earlier, so use that here as well. Backpatch-through: 11
This commit is contained in:
@ -17191,7 +17191,8 @@ ATExecAttachPartitionIdx(List **wqueue, Relation parentIdx, RangeVar *name)
|
|||||||
}
|
}
|
||||||
if (!found)
|
if (!found)
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("cannot attach index \"%s\" as a partition of index \"%s\"",
|
(errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE),
|
||||||
|
errmsg("cannot attach index \"%s\" as a partition of index \"%s\"",
|
||||||
RelationGetRelationName(partIdx),
|
RelationGetRelationName(partIdx),
|
||||||
RelationGetRelationName(parentIdx)),
|
RelationGetRelationName(parentIdx)),
|
||||||
errdetail("Index \"%s\" is not an index on any partition of table \"%s\".",
|
errdetail("Index \"%s\" is not an index on any partition of table \"%s\".",
|
||||||
|
Reference in New Issue
Block a user