mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Fix object identities for pg_conversion objects
This was already fixed in0d906798f
, but I failed to update the array-formatted case. This is not backpatched, since this only affects the code path introduced by commita676201490
.
This commit is contained in:
@ -3756,8 +3756,8 @@ getObjectIdentityParts(const ObjectAddress *object,
|
|||||||
quote_qualified_identifier(schema,
|
quote_qualified_identifier(schema,
|
||||||
NameStr(conForm->conname)));
|
NameStr(conForm->conname)));
|
||||||
if (objname)
|
if (objname)
|
||||||
*objname = list_make1(pstrdup(NameStr(conForm->conname)));
|
*objname = list_make2(schema,
|
||||||
pfree(schema);
|
pstrdup(NameStr(conForm->conname)));
|
||||||
ReleaseSysCache(conTup);
|
ReleaseSysCache(conTup);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user