diff options
| author | Tom Lane | 2005-06-28 19:51:26 +0000 |
|---|---|---|
| committer | Tom Lane | 2005-06-28 19:51:26 +0000 |
| commit | 0eaa36a16a89029f1b2eb9a38c90e3a0a0e2641e (patch) | |
| tree | 31ad7be7a83a1fa7186e8de04c317f011ef4f54e /src/include/storage/pmsignal.h | |
| parent | 88b49cdc95ef9601edcb2cdb3fbe1986128b5092 (diff) | |
Bring syntax of role-related commands into SQL compliance. To avoid
syntactic conflicts, both privilege and role GRANT/REVOKE commands have
to use the same production for scanning the list of tokens that might
eventually turn out to be privileges or role names. So, change the
existing GRANT/REVOKE code to expect a list of strings not pre-reduced
AclMode values. Fix a couple other minor issues while at it, such as
InitializeAcl function name conflicting with a Windows system function.
Diffstat (limited to 'src/include/storage/pmsignal.h')
| -rw-r--r-- | src/include/storage/pmsignal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/pmsignal.h b/src/include/storage/pmsignal.h index f82630ae242..d7956d94105 100644 --- a/src/include/storage/pmsignal.h +++ b/src/include/storage/pmsignal.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/storage/pmsignal.h,v 1.11 2004/12/31 22:03:42 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/storage/pmsignal.h,v 1.12 2005/06/28 19:51:25 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ */ typedef enum { - PMSIGNAL_PASSWORD_CHANGE, /* pg_pwd file has changed */ + PMSIGNAL_PASSWORD_CHANGE, /* pg_auth file has changed */ PMSIGNAL_WAKEN_CHILDREN, /* send a SIGUSR1 signal to all backends */ PMSIGNAL_WAKEN_ARCHIVER, /* send a NOTIFY signal to xlog archiver */ |
