Fix copyfuncs/equalfuncs support for ReassignOwnedStmt.

Noah Misch
pull/3/head
Robert Haas 14 years ago
parent 53bbc681ca
commit b5eccaef2c
  1. 2
      src/backend/nodes/copyfuncs.c
  2. 2
      src/backend/nodes/equalfuncs.c

@ -3652,7 +3652,7 @@ _copyReassignOwnedStmt(const ReassignOwnedStmt *from)
ReassignOwnedStmt *newnode = makeNode(ReassignOwnedStmt);
COPY_NODE_FIELD(roles);
COPY_SCALAR_FIELD(newrole);
COPY_STRING_FIELD(newrole);
return newnode;
}

@ -1947,7 +1947,7 @@ static bool
_equalReassignOwnedStmt(const ReassignOwnedStmt *a, const ReassignOwnedStmt *b)
{
COMPARE_NODE_FIELD(roles);
COMPARE_NODE_FIELD(newrole);
COMPARE_STRING_FIELD(newrole);
return true;
}

Loading…
Cancel
Save