Commit
6776142a07afb4c28961f27059d800196902f5f1 failed to do this,
and the buildfarm broke.
Patch by me, per advice from Tom Lane and Michael Paquier.
Discussion: http://postgr.es/m/13988.
1552960403@sss.pgh.pa.us
{
VacuumStmt *newnode = makeNode(VacuumStmt);
- COPY_SCALAR_FIELD(options);
+ COPY_NODE_FIELD(options);
COPY_NODE_FIELD(rels);
+ COPY_SCALAR_FIELD(is_vacuumcmd);
return newnode;
}
static bool
_equalVacuumStmt(const VacuumStmt *a, const VacuumStmt *b)
{
- COMPARE_SCALAR_FIELD(options);
+ COMPARE_NODE_FIELD(options);
COMPARE_NODE_FIELD(rels);
+ COMPARE_SCALAR_FIELD(is_vacuumcmd);
return true;
}