diff options
| author | Peter Eisentraut | 2002-03-01 22:45:19 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2002-03-01 22:45:19 +0000 |
| commit | 1aac2c852a2ccd817daf2dac99cf450e7822eb20 (patch) | |
| tree | 905d452d101bd6ef6024d178261556ef7cd73470 /src/include/commands | |
| parent | 851f7661154f6de6dd0cfef5fec5aa7cce0a7ae8 (diff) | |
User and database-specific session defaults for run-time configuration
variables. New commands ALTER DATABASE ... SET and ALTER USER ... SET.
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/dbcommands.h | 5 | ||||
| -rw-r--r-- | src/include/commands/user.h | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index 0636130c2e1..32c823e152c 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.h @@ -7,16 +7,19 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: dbcommands.h,v 1.20 2002/02/24 20:20:21 tgl Exp $ + * $Id: dbcommands.h,v 1.21 2002/03/01 22:45:17 petere Exp $ * *------------------------------------------------------------------------- */ #ifndef DBCOMMANDS_H #define DBCOMMANDS_H +#include <nodes/parsenodes.h> + extern void createdb(const char *dbname, const char *dbowner, const char *dbpath, const char *dbtemplate, int encoding); extern void dropdb(const char *dbname); +extern void AlterDatabaseSet(AlterDatabaseSetStmt *stmt); #endif /* DBCOMMANDS_H */ diff --git a/src/include/commands/user.h b/src/include/commands/user.h index 3a56547a3fa..351c2d6ef6d 100644 --- a/src/include/commands/user.h +++ b/src/include/commands/user.h @@ -3,7 +3,7 @@ * user.h * * - * $Id: user.h,v 1.16 2001/11/05 17:46:33 momjian Exp $ + * $Id: user.h,v 1.17 2002/03/01 22:45:17 petere Exp $ * *------------------------------------------------------------------------- */ @@ -14,6 +14,7 @@ extern void CreateUser(CreateUserStmt *stmt); extern void AlterUser(AlterUserStmt *stmt); +extern void AlterUserSet(AlterUserSetStmt *stmt); extern void DropUser(DropUserStmt *stmt); extern void CreateGroup(CreateGroupStmt *stmt); |
