diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-03 12:13:59 +0100 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-03 12:13:59 +0100 |
commit | aa3faa3c7a7a49b3318059ccaf79bc1886a64707 (patch) | |
tree | 1ccf93dda1b6481727d416f1dedfa556a704247a /src/backend/nodes/copyfuncs.c | |
parent | 83454e3c2b28141c0db01c7d2027e01040df5249 (diff) |
WITH support in MERGE
Author: Peter Geoghegan
Recursive support removed, no tests
Docs added by me
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 770ed3b1a88..c3efca3c452 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -3055,6 +3055,7 @@ _copyMergeStmt(const MergeStmt *from) COPY_NODE_FIELD(source_relation); COPY_NODE_FIELD(join_condition); COPY_NODE_FIELD(mergeActionList); + COPY_NODE_FIELD(withClause); return newnode; } |