diff options
author | Noah Misch <noah@leadboat.com> | 2021-06-06 00:08:21 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2021-06-06 00:08:21 -0700 |
commit | a2dee328bbe5b1979bbc6a784deb86a336c9cd74 (patch) | |
tree | d7a89b3c7ab4862225913bb70cd1705fb85683c9 /src/backend/nodes/copyfuncs.c | |
parent | 5c25fd650a774cc4f16ac9c635830d9bc5797f61 (diff) |
Standardize nodes/*funcs.c cosmetics for ForeignScan.resultRelation.
catversion bump due to readfuncs.c field order change.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 90770a89b0b..f94422c0526 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -775,6 +775,7 @@ _copyForeignScan(const ForeignScan *from) * copy remainder of node */ COPY_SCALAR_FIELD(operation); + COPY_SCALAR_FIELD(resultRelation); COPY_SCALAR_FIELD(fs_server); COPY_NODE_FIELD(fdw_exprs); COPY_NODE_FIELD(fdw_private); @@ -782,7 +783,6 @@ _copyForeignScan(const ForeignScan *from) COPY_NODE_FIELD(fdw_recheck_quals); COPY_BITMAPSET_FIELD(fs_relids); COPY_SCALAR_FIELD(fsSystemCol); - COPY_SCALAR_FIELD(resultRelation); return newnode; } |