We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53bbc68 commit b5eccaeCopy full SHA for b5eccae
src/backend/nodes/copyfuncs.c
@@ -3652,7 +3652,7 @@ _copyReassignOwnedStmt(const ReassignOwnedStmt *from)
3652
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
3653
3654
COPY_NODE_FIELD(roles);
3655
- COPY_SCALAR_FIELD(newrole);
+ COPY_STRING_FIELD(newrole);
3656
3657
return newnode;
3658
}
src/backend/nodes/equalfuncs.c
@@ -1947,7 +1947,7 @@ static bool
1947
_equalReassignOwnedStmt(const ReassignOwnedStmt *a, const ReassignOwnedStmt *b)
1948
{
1949
COMPARE_NODE_FIELD(roles);
1950
- COMPARE_NODE_FIELD(newrole);
+ COMPARE_STRING_FIELD(newrole);
1951
1952
return true;
1953
0 commit comments