Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit70dc2db

Browse files
committed
Fix object identities for pg_conversion objects
This was already fixed in0d90679, but I failed to update thearray-formatted case. This is not backpatched, since this only affectsthe code path introduced by commita676201.
1 parent5f6a9d0 commit70dc2db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/catalog/objectaddress.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3756,8 +3756,8 @@ getObjectIdentityParts(const ObjectAddress *object,
37563756
quote_qualified_identifier(schema,
37573757
NameStr(conForm->conname)));
37583758
if (objname)
3759-
*objname=list_make1(pstrdup(NameStr(conForm->conname)));
3760-
pfree(schema);
3759+
*objname=list_make2(schema,
3760+
pstrdup(NameStr(conForm->conname)));
37613761
ReleaseSysCache(conTup);
37623762
break;
37633763
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp