1/*-------------------------------------------------------------------------
4 * PostgreSQL's list of SQL keywords
7 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 * src/common/keywords.c
14 *-------------------------------------------------------------------------
21/* ScanKeywordList lookup data for SQL keywords */
25/* Keyword categories for SQL keywords */
27#define PG_KEYWORD(kwname, value, category, collabel) category,
35/* Keyword can-be-bare-label flags for SQL keywords */
37 #define PG_KEYWORD(kwname, value, category, collabel) collabel,
39 #define BARE_LABEL true
40 #define AS_LABEL false
const uint8 ScanKeywordCategories[SCANKEYWORDS_NUM_KEYWORDS]
const bool ScanKeywordBareLabel[SCANKEYWORDS_NUM_KEYWORDS]