1 /*-------------------------------------------------------------------------
4 * lexical token lookup for key words in PostgreSQL
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
14 *-------------------------------------------------------------------------
16 #include "postgres_fe.h"
18 #include "parser/keywords.h"
22 #define PG_KEYWORD(a,b,c) {a,b,c},
25 const ScanKeyword ScanKeywords
[] = {
26 #include "parser/kwlist.h"
29 /* End of ScanKeywords, for use in kwlookup.c */
30 const ScanKeyword
*LastScanKeyword
= endof(ScanKeywords
);