aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/parsenodes.h
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2018-04-03 12:13:59 +0100
committerSimon Riggs <simon@2ndQuadrant.com>2018-04-03 12:13:59 +0100
commitaa3faa3c7a7a49b3318059ccaf79bc1886a64707 (patch)
tree1ccf93dda1b6481727d416f1dedfa556a704247a /src/include/nodes/parsenodes.h
parent83454e3c2b28141c0db01c7d2027e01040df5249 (diff)
downloadpostgresql-aa3faa3c7a7a49b3318059ccaf79bc1886a64707.tar.gz
postgresql-aa3faa3c7a7a49b3318059ccaf79bc1886a64707.zip
WITH support in MERGE
Author: Peter Geoghegan Recursive support removed, no tests Docs added by me
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r--src/include/nodes/parsenodes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index d005beeba82..699fa77bc70 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -1519,6 +1519,7 @@ typedef struct MergeStmt
Node *source_relation; /* source relation */
Node *join_condition; /* join condition between source and target */
List *mergeActionList; /* list of MergeAction(s) */
+ WithClause *withClause; /* WITH clause */
} MergeStmt;
typedef struct MergeAction