diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-30 03:57:29 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-30 03:57:29 +0000 |
commit | eebfb9baa517b2680cf963b74e4c6a9fb12a1df2 (patch) | |
tree | f8ceb89757f3910de48346cf0a0290528cc40ceb /src/include/nodes/parsenodes.h | |
parent | 3ab5b1f1e661840c191dbba9d2985c17766896ef (diff) |
create/alter user extension
This one should work much better than the one I sent in previously. The
functionality is the same, but the patch was missing one file resulting
in
the compilation failing. The docs also received a minor fix.
Peter Eisentraut Sernanders väg 10:115
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index aac3ef7de53..04c8c9b5182 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.86 1999/10/26 03:12:39 momjian Exp $ + * $Id: parsenodes.h,v 1.87 1999/11/30 03:57:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -237,6 +237,7 @@ typedef struct CreateUserStmt NodeTag type; char *user; /* PostgreSQL user login */ char *password; /* PostgreSQL user password */ + int sysid; /* PgSQL system id (-1 if don't care) */ bool *createdb; /* Can the user create databases? */ bool *createuser; /* Can this user create users? */ List *groupElts; /* The groups the user is a member of */ |