diff options
author | Peter Eisentraut | 2002-02-18 23:11:58 +0000 |
---|---|---|
committer | Peter Eisentraut | 2002-02-18 23:11:58 +0000 |
commit | 8adf56f77aa0cc8cf4af7a19f0d235fc56fbabc7 (patch) | |
tree | cab3054a1a1fba1fe1722bb75a1fc3c06eda964d /src/include/parser | |
parent | 5e035031265aef8608fd32a31897240a3aff3d8d (diff) |
Privileges on functions and procedural languages
Diffstat (limited to 'src/include/parser')
-rw-r--r-- | src/include/parser/keywords.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h index 77c754901ab..91149072c3f 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.12 2001/11/05 17:46:34 momjian Exp $ + * $Id: keywords.h,v 1.13 2002/02/18 23:11:45 petere Exp $ * *------------------------------------------------------------------------- */ @@ -21,5 +21,6 @@ typedef struct ScanKeyword } ScanKeyword; extern ScanKeyword *ScanKeywordLookup(char *text); +extern const char *TokenString(int token); #endif /* KEYWORDS_H */ |