We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a146e7b commit f8c53d5Copy full SHA for f8c53d5
src/backend/nodes/copyfuncs.c
@@ -3709,7 +3709,7 @@ _copyReassignOwnedStmt(ReassignOwnedStmt *from)
3709
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
3710
3711
COPY_NODE_FIELD(roles);
3712
- COPY_SCALAR_FIELD(newrole);
+ COPY_STRING_FIELD(newrole);
3713
3714
return newnode;
3715
}
src/backend/nodes/equalfuncs.c
@@ -2005,7 +2005,7 @@ static bool
2005
_equalReassignOwnedStmt(ReassignOwnedStmt *a, ReassignOwnedStmt *b)
2006
{
2007
COMPARE_NODE_FIELD(roles);
2008
- COMPARE_NODE_FIELD(newrole);
+ COMPARE_STRING_FIELD(newrole);
2009
2010
return true;
2011
0 commit comments