diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-26 16:05:18 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-08-26 16:18:17 +0300 |
commit | 0076f264b6f24854219d49b159602e2042c38ee7 (patch) | |
tree | 7ea7316c5c6bf9ebbffb9b980d0123a2d68c6b0a /src/include/nodes/parsenodes.h | |
parent | 57ca1d4f0175f60e9cfb0f997c864173d9c72607 (diff) | |
download | postgresql-0076f264b6f24854219d49b159602e2042c38ee7.tar.gz postgresql-0076f264b6f24854219d49b159602e2042c38ee7.zip |
Implement IF NOT EXISTS for CREATE SEQUENCE.
FabrÃzio de Royes Mello
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 28029fe69ee..d2c0b29c0d7 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 |