mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Fix copyfuncs/equalfuncs support for ReassignOwnedStmt.
Noah Misch
This commit is contained in:
@ -3709,7 +3709,7 @@ _copyReassignOwnedStmt(ReassignOwnedStmt *from)
|
|||||||
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
|
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
|
||||||
|
|
||||||
COPY_NODE_FIELD(roles);
|
COPY_NODE_FIELD(roles);
|
||||||
COPY_SCALAR_FIELD(newrole);
|
COPY_STRING_FIELD(newrole);
|
||||||
|
|
||||||
return newnode;
|
return newnode;
|
||||||
}
|
}
|
||||||
|
@ -2005,7 +2005,7 @@ static bool
|
|||||||
_equalReassignOwnedStmt(ReassignOwnedStmt *a, ReassignOwnedStmt *b)
|
_equalReassignOwnedStmt(ReassignOwnedStmt *a, ReassignOwnedStmt *b)
|
||||||
{
|
{
|
||||||
COMPARE_NODE_FIELD(roles);
|
COMPARE_NODE_FIELD(roles);
|
||||||
COMPARE_NODE_FIELD(newrole);
|
COMPARE_STRING_FIELD(newrole);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user