Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / backend / parser / keywords.c
blob83db2d2b9c8caa799677caa4e0ebe67b84cb1abe
1 /*-------------------------------------------------------------------------
3 * keywords.c
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
11 * IDENTIFICATION
12 * $PostgreSQL$
14 *-------------------------------------------------------------------------
16 #include "postgres.h"
18 #include "nodes/nodes.h"
19 #include "nodes/parsenodes.h"
20 #include "parser/keywords.h"
21 #include "parser/gram.h"
23 #define PG_KEYWORD(a,b,c) {a,b,c},
26 const ScanKeyword ScanKeywords[] = {
27 #include "parser/kwlist.h"
30 /* End of ScanKeywords, for use in kwlookup.c and elsewhere */
31 const ScanKeyword *LastScanKeyword = endof(ScanKeywords);