diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-25 13:09:49 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-25 13:09:49 +0000 |
commit | 780068f812a61e73b2474f7f025b28309a2f1840 (patch) | |
tree | 7d1db588478714e434ced675e55af8101f94f3fb /src/backend/parser | |
parent | d067f83b274adffb3415a8a41dd8bdc71bc87620 (diff) | |
download | postgresql-780068f812a61e73b2474f7f025b28309a2f1840.tar.gz postgresql-780068f812a61e73b2474f7f025b28309a2f1840.zip |
From: Jan Wieck <jwieck@debis.com>
seems that my last post didn't make it through. That's good
since the diff itself didn't covered the renaming of
pg_user.h to pg_shadow.h and it's new content.
Here it's again. The complete regression test passwd with
only some float diffs. createuser and destroyuser work.
pg_shadow cannot be read by ordinary user.
Diffstat (limited to 'src/backend/parser')
-rw-r--r-- | src/backend/parser/gram.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index 76a491c96d4..2c932b2e512 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.4 1998/02/18 07:25:57 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.5 1998/02/25 13:07:08 scrappy Exp $ * * HISTORY * AUTHOR DATE MAJOR EVENT @@ -88,7 +88,7 @@ Oid param_type(int t); /* used in parse_expr.c */ char chr; char *str; bool boolean; - bool* pboolean; /* for pg_user privileges */ + bool* pboolean; /* for pg_shadow privileges */ List *list; Node *node; Value *value; |