]> granicus.if.org Git - postgresql/blob - src/interfaces/ecpg/preproc/keywords.c
Update copyright for 2014
[postgresql] / src / interfaces / ecpg / preproc / keywords.c
1 /*-------------------------------------------------------------------------
2  *
3  * keywords.c
4  *        lexical token lookup for key words in PostgreSQL
5  *
6  *
7  * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  *
11  * IDENTIFICATION
12  *        src/interfaces/ecpg/preproc/keywords.c
13  *
14  *-------------------------------------------------------------------------
15  */
16 #include "postgres_fe.h"
17
18 #include "parser/keywords.h"
19 #include "type.h"
20 #include "preproc.h"
21
22 #define PG_KEYWORD(a,b,c) {a,b,c},
23
24
25 const ScanKeyword SQLScanKeywords[] = {
26 #include "parser/kwlist.h"
27 };
28
29 const int       NumSQLScanKeywords = lengthof(SQLScanKeywords);