blob: 54ed97709613e43a39d2177bad17be90ca78bbcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*-------------------------------------------------------------------------
*
* keywords.c
* PostgreSQL's list of SQL keywords
*
*
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* src/common/keywords.c
*
*-------------------------------------------------------------------------
*/
#include "c.h"
#include "common/keywords.h"
/* ScanKeywordList lookup data for SQL keywords */
#include "kwlist_d.h"
/* Keyword categories for SQL keywords */
#define PG_KEYWORD(kwname, value, category) category,
const uint8 ScanKeywordCategories[SCANKEYWORDS_NUM_KEYWORDS] = {
#include "parser/kwlist.h"
};
#undef PG_KEYWORD
|