diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-23 11:44:43 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-23 11:44:43 -0400 |
commit | 128e6ee01dc9a8b7b0d3d3c8edc594ca9e51f993 (patch) | |
tree | 59de4c1491bceb2c6f283788b773111e6066734c /src/backend | |
parent | 232c532213446701583e015ca55b5afb9c291445 (diff) | |
download | postgresql-128e6ee01dc9a8b7b0d3d3c8edc594ca9e51f993.tar.gz postgresql-128e6ee01dc9a8b7b0d3d3c8edc594ca9e51f993.zip |
Assorted compilation and test fixes
related to 7c4f52409a8c7d85ed169bbbc1f6092274d03920, per build farm
Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 3 | ||||
-rw-r--r-- | src/backend/nodes/equalfuncs.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 67c7de670bb..93d4eb207f1 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -4450,7 +4450,10 @@ _copyAlterSubscriptionStmt(const AlterSubscriptionStmt *from) { AlterSubscriptionStmt *newnode = makeNode(AlterSubscriptionStmt); + COPY_SCALAR_FIELD(kind); COPY_STRING_FIELD(subname); + COPY_STRING_FIELD(conninfo); + COPY_NODE_FIELD(publication); COPY_NODE_FIELD(options); return newnode; diff --git a/src/backend/nodes/equalfuncs.c b/src/backend/nodes/equalfuncs.c index 4d8e7fe9b00..6b40b56f71e 100644 --- a/src/backend/nodes/equalfuncs.c +++ b/src/backend/nodes/equalfuncs.c @@ -2199,7 +2199,10 @@ static bool _equalAlterSubscriptionStmt(const AlterSubscriptionStmt *a, const AlterSubscriptionStmt *b) { + COMPARE_SCALAR_FIELD(kind); COMPARE_STRING_FIELD(subname); + COMPARE_STRING_FIELD(conninfo); + COMPARE_NODE_FIELD(publication); COMPARE_NODE_FIELD(options); return true; |