mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
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.
This commit is contained in:
@@ -2471,6 +2471,16 @@ typedef struct DropdbStmt
|
||||
bool missing_ok; /* skip error if db is missing? */
|
||||
} DropdbStmt;
|
||||
|
||||
/* ----------------------
|
||||
* Alter System Statement
|
||||
* ----------------------
|
||||
*/
|
||||
typedef struct AlterSystemStmt
|
||||
{
|
||||
NodeTag type;
|
||||
VariableSetStmt *setstmt; /* SET subcommand */
|
||||
} AlterSystemStmt;
|
||||
|
||||
/* ----------------------
|
||||
* Cluster Statement (support pbrown's cluster index implementation)
|
||||
* ----------------------
|
||||
|
||||
Reference in New Issue
Block a user