8000
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 156fac5 commit 4fd49c7Copy full SHA for 4fd49c7
src/backend/nodes/copyfuncs.c
@@ -3449,7 +3449,7 @@ _copyReassignOwnedStmt(ReassignOwnedStmt *from)
3449
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
3450
3451
COPY_NODE_FIELD(roles);
3452
- COPY_SCALAR_FIELD(newrole);
+ COPY_STRING_FIELD(newrole);
3453
3454
return newnode;
3455
}
src/backend/nodes/equalfuncs.c
@@ -1888,7 +1888,7 @@ static bool
1888
_equalReassignOwnedStmt(ReassignOwnedStmt *a, ReassignOwnedStmt *b)
1889
{
1890
COMPARE_NODE_FIELD(roles);
1891
- COMPARE_NODE_FIELD(newrole);
+ COMPARE_STRING_FIELD(newrole);
1892
1893
return true;
1894
0 commit comments