diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-31 17:19:22 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-31 17:19:22 +0000 |
| commit | d42cf5a42a42689f68bc1ee1200aca75f954b1fd (patch) | |
| tree | edce5e6641f56c2c7e836e52a8b6586d1ab45cb5 /src/include/nodes/parsenodes.h | |
| parent | b12587710701f63b4d8bac49f59901f210edf6b6 (diff) | |
| download | postgresql-d42cf5a42a42689f68bc1ee1200aca75f954b1fd.tar.gz | |
Add per-user and per-database connection limit options.
This patch also includes preliminary update of pg_dumpall for roles.
Petr Jelinek, with review by Bruce Momjian and Tom Lane.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 6d388b07d3..68262d28f7 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.286 2005/07/26 16:38:28 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.287 2005/07/31 17:19:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1624,6 +1624,13 @@ typedef struct CreatedbStmt * Alter Database * ---------------------- */ +typedef struct AlterDatabaseStmt +{ + NodeTag type; + char *dbname; /* name of database to alter */ + List *options; /* List of DefElem nodes */ +} AlterDatabaseStmt; + typedef struct AlterDatabaseSetStmt { NodeTag type; |
