MySQL 8.4.0
Source Code Documentation
lex_symbol.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24/* This struct includes all reserved words and functions */
25
26#ifndef _lex_symbol_h
27#define _lex_symbol_h
28
30 SG_KEYWORDS = 1 << 0, // SQL keywords and reserved words
31 SG_FUNCTIONS = 1 << 1, // very special native SQL functions
32 SG_HINTABLE_KEYWORDS = 1 << 2, // SQL keywords that accept optimizer hints
33 SG_HINTS = 1 << 3, // optimizer hint parser keywords
34
35 /* All tokens of the main parser: */
37};
38
39struct SYMBOL {
40 const char *name;
41 const unsigned int length;
42 const unsigned int tok;
43 /** group mask, see SYM_GROUP enum for bits. */
44 int group;
45};
46
47struct LEX_SYMBOL {
48 const SYMBOL *symbol;
49 char *str;
50 unsigned int length;
51};
52
53#endif /* _lex_symbol_h */
SYM_GROUP
Definition: lex_symbol.h:29
@ SG_KEYWORDS
Definition: lex_symbol.h:30
@ SG_HINTS
Definition: lex_symbol.h:33
@ SG_MAIN_PARSER
Definition: lex_symbol.h:36
@ SG_HINTABLE_KEYWORDS
Definition: lex_symbol.h:32
@ SG_FUNCTIONS
Definition: lex_symbol.h:31
Definition: lex_symbol.h:47
const SYMBOL * symbol
Definition: lex_symbol.h:48
char * str
Definition: lex_symbol.h:49
unsigned int length
Definition: lex_symbol.h:50
Definition: lex_symbol.h:39
const unsigned int length
Definition: lex_symbol.h:41
const unsigned int tok
Definition: lex_symbol.h:42
int group
group mask, see SYM_GROUP enum for bits.
Definition: lex_symbol.h:44
const char * name
Definition: lex_symbol.h:40