index 6f3565ad205d424140738735d3465aa5cf2ea117..c68bd7bcf73c2d5b1378ef49071255c31dd53e84 100644 (file)
{
VacuumStmt *newnode = makeNode(VacuumStmt);
- COPY_SCALAR_FIELD(options);
+ COPY_NODE_FIELD(options);
COPY_NODE_FIELD(rels);
+ COPY_SCALAR_FIELD(is_vacuumcmd);
return newnode;
}
index 813606ce0e780297ee1032625b85328351eb31eb..886e96c9b613f8a7f8e8ed2bbdccee57901ceadb 100644 (file)
@@ -1671,8 +1671,9 @@ _equalDropdbStmt(const DropdbStmt *a, const DropdbStmt *b)
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;
}