mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Support CREATE SCHEMA IF NOT EXISTS.
Per discussion, schema-element subcommands are not allowed together with this option, since it's not very obvious what should happen to the element objects. Fabrízio de Royes Mello
This commit is contained in:
@@ -1157,6 +1157,7 @@ typedef struct CreateSchemaStmt
|
||||
char *schemaname; /* the name of the schema to create */
|
||||
char *authid; /* the owner of the created schema */
|
||||
List *schemaElts; /* schema components (list of parsenodes) */
|
||||
bool if_not_exists; /* just do nothing if schema already exists? */
|
||||
} CreateSchemaStmt;
|
||||
|
||||
typedef enum DropBehavior
|
||||
|
Reference in New Issue
Block a user