diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2013-12-18 23:42:44 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2013-12-18 23:42:44 +0900 |
commit | 65d6e4cb5c62371dae6c236a7e709d503ae6ddf8 (patch) | |
tree | 07fff22fb42940bcf618885589909de0adaa9f9c /src/include/nodes/parsenodes.h | |
parent | dba5a9dda9adbda16a72c46e1c012ee6552c248a (diff) | |
download | postgresql-65d6e4cb5c62371dae6c236a7e709d503ae6ddf8.tar.gz postgresql-65d6e4cb5c62371dae6c236a7e709d503ae6ddf8.zip |
Add ALTER SYSTEM command to edit the server configuration file.
Patch contributed by Amit Kapila. Reviewed by Hari Babu, Masao Fujii,
Boszormenyi Zoltan, Andres Freund, Greg Smith and others.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 0ad7586853b..6a5a8c5f2d7 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -2472,6 +2472,16 @@ typedef struct DropdbStmt } DropdbStmt; /* ---------------------- + * Alter System Statement + * ---------------------- + */ +typedef struct AlterSystemStmt +{ + NodeTag type; + VariableSetStmt *setstmt; /* SET subcommand */ +} AlterSystemStmt; + +/* ---------------------- * Cluster Statement (support pbrown's cluster index implementation) * ---------------------- */ |