diff options
| author | Tom Lane | 2002-04-21 00:26:44 +0000 |
|---|---|---|
| committer | Tom Lane | 2002-04-21 00:26:44 +0000 |
| commit | b0bcf8aab2da6710ff8842b86fed93571e143cc8 (patch) | |
| tree | 922f5b76b34a555d1a30003f216dd5df1aa3663c /src/include/parser/keywords.h | |
| parent | ad201b8d18b19d8c7a4a458e078bb555fcc2de74 (diff) | |
Restructure AclItem representation so that we can have more than eight
different privilege bits (might as well make use of the space we were
wasting on padding). EXECUTE and USAGE bits for procedures, languages
now are separate privileges instead of being overlaid on SELECT. Add
privileges for namespaces and databases. The GRANT and REVOKE commands
work for these object types, but we don't actually enforce the privileges
yet...
Diffstat (limited to 'src/include/parser/keywords.h')
| -rw-r--r-- | src/include/parser/keywords.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h index 91149072c3f..9023d688cf4 100644 --- a/src/include/parser/keywords.h +++ b/src/include/parser/keywords.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: keywords.h,v 1.13 2002/02/18 23:11:45 petere Exp $ + * $Id: keywords.h,v 1.14 2002/04/21 00:26:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,6 +21,5 @@ typedef struct ScanKeyword } ScanKeyword; extern ScanKeyword *ScanKeywordLookup(char *text); -extern const char *TokenString(int token); #endif /* KEYWORDS_H */ |
