diff options
Diffstat (limited to 'src/include/parser/keywords.h')
-rw-r--r-- | src/include/parser/keywords.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h index 717e20e7df4..2da7fd3da9e 100644 --- a/src/include/parser/keywords.h +++ b/src/include/parser/keywords.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.24 2008/01/01 19:45:58 momjian Exp $ + * $PostgreSQL: pgsql/src/include/parser/keywords.h,v 1.25 2008/07/03 20:58:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -28,6 +28,9 @@ typedef struct ScanKeyword int16 category; /* see codes above */ } ScanKeyword; +extern const ScanKeyword ScanKeywords[]; +extern const ScanKeyword *LastScanKeyword; + extern const ScanKeyword *ScanKeywordLookup(const char *text); #endif /* KEYWORDS_H */ |