summaryrefslogtreecommitdiff
path: root/src/include/nodes
diff options
context:
space:
mode:
authorHeikki Linnakangas2014-08-26 13:05:18 +0000
committerHeikki Linnakangas2014-08-26 13:18:17 +0000
commit0076f264b6f24854219d49b159602e2042c38ee7 (patch)
tree7ea7316c5c6bf9ebbffb9b980d0123a2d68c6b0a /src/include/nodes
parent57ca1d4f0175f60e9cfb0f997c864173d9c72607 (diff)
Implement IF NOT EXISTS for CREATE SEQUENCE.
Fabrízio de Royes Mello
Diffstat (limited to 'src/include/nodes')
-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 28029fe69e..d2c0b29c0d 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -1979,6 +1979,7 @@ typedef struct CreateSeqStmt
RangeVar *sequence; /* the sequence to create */
List *options;
Oid ownerId; /* ID of owner, or InvalidOid for default */
+ bool if_not_exists; /* just do nothing if it already exists? */
} CreateSeqStmt;
typedef struct AlterSeqStmt