From: Heikki Linnakangas Date: Thu, 28 May 2020 09:37:00 +0000 (+0300) Subject: Add missing error code to "cannot attach index ..." error. X-Git-Tag: REL_11_9~99 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34301c9c5674919ef2e786f1157b3ced543b02e2;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index bc66d6c4f5f..4c6692e1ab8 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -15977,7 +15977,8 @@ ATExecAttachPartitionIdx(List **wqueue, Relation parentIdx, RangeVar *name) } if (!found) 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(parentIdx)), errdetail("Index \"%s\" is not an index on any partition of table \"%s\".",