24#ifndef PARSER_YYSTYPE_INCLUDED
25#define PARSER_YYSTYPE_INCLUDED
69class PT_add_partition;
282template <
typename Enum, Enum Default_value>
669 Algo_and_lock_and_validation
flags;
718static_assert(
sizeof(
YYSTYPE) <= 32,
"YYSTYPE is too big");
enum_alter_table_algorithm
The different values of the ALGORITHM clause.
Definition: sql_alter.h:354
@ ALTER_TABLE_ALGORITHM_DEFAULT
Definition: sql_alter.h:356
enum_alter_table_lock
The different values of the LOCK clause.
Definition: sql_alter.h:372
@ ALTER_TABLE_LOCK_DEFAULT
Definition: sql_alter.h:374
enum_with_validation
Status of validation clause in ALTER TABLE statement.
Definition: sql_alter.h:390
@ ALTER_VALIDATION_DEFAULT
Default value, used when it's not specified in the statement.
Definition: sql_alter.h:396
std::optional-like wrapper for simple bitmaps (usually enums of binary flags)
Definition: parser_yystype.h:283
Enum get_or_default() const
Return the wrapped Enum value (if any) or the Default_value.
Definition: parser_yystype.h:303
void init()
Constructor-like function.
Definition: parser_yystype.h:289
Enum get() const
Return the wrapped Enum value.
Definition: parser_yystype.h:297
bool is_set() const
False if the wrapped Enum value is not assigned.
Definition: parser_yystype.h:292
void merge(const Enum_parser &x)
Merge the x bit set into the wrapped Enum value (if any), or replace it.
Definition: parser_yystype.h:312
Enum m_enum
The wrapped Enum value.
Definition: parser_yystype.h:318
bool m_is_set
True if m_enum is assigned with some value.
Definition: parser_yystype.h:317
void set(Enum value)
Assign the wrapped Enum value.
Definition: parser_yystype.h:306
Definition: sql_lex.h:486
Dynamic parameters used as placeholders ('?') inside prepared statements.
Definition: item.h:4574
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:853
Definition: sql_list.h:434
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Definition: parse_tree_items.h:239
Definition: parse_tree_nodes.h:4752
Top-level node for the ALTER INSTANCE statement.
Definition: parse_tree_nodes.h:2019
Definition: parse_tree_nodes.h:3770
Definition: parse_tree_nodes.h:4149
Definition: parse_tree_nodes.h:4738
A template-free base class for index options that we can predeclare in sql_lex.h.
Definition: parse_tree_nodes.h:2035
Parse tree node for a single of a window extent's borders, cf.
Definition: parse_tree_nodes.h:1243
Parse tree node for one or both of a window extent's borders, cf.
Definition: parse_tree_nodes.h:1288
Base class for all column attributes in CREATE/ALTER TABLE
Definition: parse_tree_column_attrs.h:85
Definition: parse_tree_nodes.h:2767
Represents an element of the WITH list: WITH [...], [...] SELECT ..., ^ or ^ i.e.
Definition: parse_tree_nodes.h:251
Definition: parse_tree_nodes.h:2213
Base class for CREATE TABLE option nodes.
Definition: parse_tree_nodes.h:2330
Common base class for CREATE TABLE and ALTER TABLE option nodes.
Definition: parse_tree_nodes.h:2316
Definition: parse_tree_nodes.h:484
Parse tree node for a window frame's exclusions, cf.
Definition: parse_tree_nodes.h:1310
Base class for both generated and regular column definitions.
Definition: parse_tree_column_attrs.h:876
Parse tree node for a window's frame, cf.
Definition: parse_tree_nodes.h:1322
Definition: parse_tree_nodes.h:618
Definition: parse_tree_hints.h:98
The class is a base class for representation of the different types of the hints.
Definition: parse_tree_hints.h:58
Definition: parse_tree_nodes.h:1836
Definition: parse_tree_nodes.h:1147
Definition: parse_tree_nodes.h:1041
Wrapper class for an Item list head, used to allocate Item lists in the parser in a context-independe...
Definition: parse_tree_helpers.h:105
Definition: parse_tree_nodes.h:515
Definition: parse_tree_nodes.h:445
A key part specification.
Definition: parse_tree_nodes.h:2044
Definition: parse_tree_nodes.h:389
Definition: parse_tree_nodes.h:705
Definition: parse_tree_nodes.h:642
Definition: parse_tree_nodes.h:968
Definition: parse_tree_nodes.h:798
Definition: parse_tree_nodes.h:202
Definition: parse_tree_nodes.h:214
Definition: parse_tree_nodes.h:631
Node for the PARTITION clause of CREATE/ALTER TABLE.
Definition: parse_tree_partitions.h:386
Definition: parse_tree_partitions.h:472
Node for a list of partitioning values in VALUES clauses.
Definition: parse_tree_partitions.h:329
Base class for partition value nodes: MAX_VALUE values or expressions.
Definition: parse_tree_partitions.h:281
Base class for VALUES partitioning clauses.
Definition: parse_tree_partitions.h:322
Base class for all partition options.
Definition: parse_tree_partitions.h:85
Node for the PARTITION definition clause.
Definition: parse_tree_partitions.h:594
Definition: parse_tree_nodes.h:4802
Definition: parse_tree_nodes.h:725
Definition: parse_tree_nodes.h:1462
Definition: parse_tree_nodes.h:1342
Definition: parse_tree_nodes.h:2930
Definition: parse_tree_nodes.h:1226
Definition: parse_tree_nodes.h:1191
Definition: parse_tree_nodes.h:778
Definition: parse_tree_nodes.h:1134
Definition: parse_tree_nodes.h:1083
Definition: parse_tree_nodes.h:899
Base class for all subpartitioning clause nodes.
Definition: parse_tree_partitions.h:422
Node for the SUBRAPTITION clause of CREATE/ALTER TABLE
Definition: parse_tree_partitions.h:263
Definition: parse_tree_nodes.h:1606
Definition: parse_tree_nodes.h:2252
Base class for column/constraint definitions in CREATE TABLE.
Definition: parse_tree_nodes.h:2250
Definition: parse_tree_nodes.h:405
Definition: parse_tree_nodes.h:1033
Definition: parse_tree_nodes.h:1049
Base class for all column type nodes.
Definition: parse_tree_column_attrs.h:531
Parse tree node for a list of window definitions corresponding to a <window clause> in SQL 2003.
Definition: parse_tree_window.h:60
Parse tree node for a window; just a shallow wrapper for class Window, q.v.
Definition: parse_tree_window.h:39
Represents the WITH clause: WITH [...], [...] SELECT ..., ^^^^^^^^^^^^^^^^^.
Definition: parse_tree_nodes.h:336
Represents the WITH list.
Definition: parse_tree_nodes.h:316
Base class for parse tree nodes (excluding the Parse_tree_root hierarchy)
Definition: parse_tree_node_base.h:139
Base class for all top-level nodes of SQL statements.
Definition: parse_tree_nodes.h:159
This class represents a query block, aka a query specification, which is a query consisting of a SELE...
Definition: sql_lex.h:1156
Histogram_command
Specifies which (if any) of the commands UPDATE HISTOGRAM or DROP HISTOGRAM that is specified after A...
Definition: sql_admin.h:70
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:168
Definition: sql_lex.h:294
A (partial) implementation of std::deque allocating its blocks on a MEM_ROOT.
Definition: mem_root_deque.h:110
This class represents condition-value term in DECLARE CONDITION or DECLARE HANDLER statements.
Definition: sp_pcontext.h:133
sp_head represents one instance of a stored program.
Definition: sp_head.h:380
Definition: sp_head.h:120
A class representing one system variable - that is something that can be accessed as @global....
Definition: set_var.h:105
Comp_creator *(*)(bool invert) chooser_compare_func_creator
Convenience typedef for a function that returns factories for Item comparators (ie....
Definition: comp_creator.h:39
This file contains the field type.
@ MYSQL_TYPE_LONGLONG
Definition: field_types.h:62
@ MYSQL_TYPE_TINY
Definition: field_types.h:55
@ MYSQL_TYPE_LONG
Definition: field_types.h:57
@ MYSQL_TYPE_NEWDECIMAL
Definition: field_types.h:78
@ MYSQL_TYPE_DOUBLE
Definition: field_types.h:59
@ MYSQL_TYPE_SHORT
Definition: field_types.h:56
@ MYSQL_TYPE_FLOAT
Definition: field_types.h:58
@ MYSQL_TYPE_INT24
Definition: field_types.h:63
Acl_type
Definition: sql_lex.h:261
Cast_target
Definition: item_create.h:56
Builder for SQL functions.
fk_match_opt
Definition: key_spec.h:58
enum_order
Definition: key_spec.h:65
keytype
Definition: key_spec.h:40
fk_option
Definition: key_spec.h:49
#define YYSTYPE
Definition: lexyy.cc:905
This file includes constants used by all storage engines.
ha_key_alg
Definition: my_base.h:97
ha_rkey_function
Definition: my_base.h:78
ha_storage_media
Definition: my_base.h:115
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
uint16_t uint16
Definition: my_inttypes.h:65
uint32 my_thread_id
Definition: my_thread_local.h:34
Interface for low level time utilities.
interval_type
Available interval types used in any statement.
Definition: my_time.h:455
Time declarations shared between the server and client API: you should not add anything to this heade...
enum_mysql_timestamp_type
Definition: mysql_time.h:45
borrowable::binary::Enum< true > Enum
Definition: classic_protocol_binary.h:330
Provides atomic access in shared-exclusive modes.
Definition: shared_spin_lock.h:79
Type
Definition: resource_group_basic_types.h:33
opt_hints_enum
Hint types, MAX_HINT_ENUM should be always last.
Definition: opt_hints.h:64
enum_drop_mode
Definition: parser_yystype.h:173
@ DROP_CASCADE
Definition: parser_yystype.h:175
@ DROP_DEFAULT
Definition: parser_yystype.h:174
@ DROP_RESTRICT
Definition: parser_yystype.h:176
olap_type
Definition: parser_yystype.h:179
@ ROLLUP_TYPE
Definition: parser_yystype.h:179
@ UNSPECIFIED_OLAP_TYPE
Definition: parser_yystype.h:179
On_duplicate
Definition: parser_yystype.h:242
Int_type
Definition: parser_yystype.h:246
Locked_row_action
We will static_cast this one to thr_lock_type.
Definition: parser_yystype.h:213
delete_option_enum
Definition: parser_yystype.h:204
@ DELETE_IGNORE
Definition: parser_yystype.h:207
@ DELETE_LOW_PRIORITY
Definition: parser_yystype.h:206
@ DELETE_QUICK
Definition: parser_yystype.h:205
enum_yes_no_unknown
Definition: parser_yystype.h:163
@ TVL_UNKNOWN
Definition: parser_yystype.h:163
@ TVL_NO
Definition: parser_yystype.h:163
@ TVL_YES
Definition: parser_yystype.h:163
Set_operator
Definition: parser_yystype.h:338
Mem_root_array_YY< LEX_CSTRING > Create_col_name_list
Definition: parser_yystype.h:238
Lock_strength
Definition: parser_yystype.h:210
PT_joined_table_type
Internally there is no CROSS JOIN join type, as cross joins are just a special case of inner joins wi...
Definition: parser_yystype.h:225
@ JTT_LEFT
Definition: parser_yystype.h:229
@ JTT_STRAIGHT_INNER
Definition: parser_yystype.h:232
@ JTT_NATURAL_LEFT
Definition: parser_yystype.h:234
@ JTT_NATURAL
Definition: parser_yystype.h:228
@ JTT_NATURAL_INNER
Definition: parser_yystype.h:233
@ JTT_NATURAL_RIGHT
Definition: parser_yystype.h:235
@ JTT_STRAIGHT
Definition: parser_yystype.h:227
@ JTT_RIGHT
Definition: parser_yystype.h:230
@ JTT_INNER
Definition: parser_yystype.h:226
Show_cmd_type
Definition: parser_yystype.h:260
Ternary_option
Definition: parser_yystype.h:240
Numeric_type
Definition: parser_yystype.h:254
Virtual_or_stored
Definition: parser_yystype.h:244
partition_type
An enum and a struct to handle partitioning and subpartitioning.
Definition: partition_element.h:33
enum_key_algorithm
PARTITION BY KEY ALGORITHM=N Which algorithm to use for hashing the fields.
Definition: partition_info.h:174
"public" interface to sys_var - server configuration variables.
enum_var_type
Definition: set_var.h:90
column_format_type
Definition: field.h:190
ts_alter_tablespace_type
Definition: handler.h:846
enum_tx_isolation
Definition: handler.h:3029
row_type
Definition: handler.h:676
index_hint_type
Definition: table.h:1390
enum_filetype
Definition: sql_exchange.h:32
enum_source_type
Definition: sql_exchange.h:30
enum_ha_read_modes
Definition: sql_handler.h:35
enum_condition_item_name
This enumeration list all the condition item names of a condition in the SQL condition area.
Definition: sql_signal.h:41
Definition: parse_tree_nodes.h:4906
Definition: parser_yystype.h:327
LEX_CSTRING prefix
prefix is optional: prefix.str can be nullptr
Definition: parser_yystype.h:328
LEX_CSTRING name
Definition: parser_yystype.h:329
Definition: m_ctype.h:385
Definition: parser_yystype.h:181
Cast_target target
Definition: parser_yystype.h:182
const char * length
Definition: parser_yystype.h:184
const CHARSET_INFO * charset
Definition: parser_yystype.h:183
const char * dec
Definition: parser_yystype.h:185
Helper for the sql_exchange class.
Definition: sql_exchange.h:53
uint sql_flags
Definition: handler.h:3634
uint flags
Definition: handler.h:3633
Definition: parse_tree_hints.h:45
The LEX object currently serves three different purposes:
Definition: sql_lex.h:3710
Definition: parser_yystype.h:188
bool is_offset_first
Definition: parser_yystype.h:194
Item * limit
Definition: parser_yystype.h:189
Item * opt_offset
Definition: parser_yystype.h:190
Helper for the sql_exchange class.
Definition: sql_exchange.h:38
Definition: mysql_lex_string.h:40
Definition: mysql_lex_string.h:35
Definition: parser_yystype.h:332
Item * expr
Definition: parser_yystype.h:335
Bipartite_name name
Definition: parser_yystype.h:334
enum_var_type type
Definition: parser_yystype.h:333
Environment data for the contextualization phase.
Definition: parse_tree_node_base.h:121
Definition: parser_yystype.h:197
bool save_to(Parse_context *)
Definition: sql_lex.cc:4859
ulonglong query_spec_options
Definition: parser_yystype.h:198
bool merge(const Query_options &a, const Query_options &b)
Definition: sql_lex.cc:4854
Definition: sql_cmd_srs.h:41
Definition: parser_yystype.h:322
T value
undefined if is_default is true
Definition: parser_yystype.h:324
bool is_default
Definition: parser_yystype.h:323
Definition: parser_yystype.h:643
void merge(const Algo_and_lock_and_validation &x)
Definition: parser_yystype.h:658
Enum_parser< Alter_info::enum_alter_table_algorithm, Alter_info::ALTER_TABLE_ALGORITHM_DEFAULT > algo
Definition: parser_yystype.h:646
Enum_parser< Alter_info::enum_alter_table_lock, Alter_info::ALTER_TABLE_LOCK_DEFAULT > lock
Definition: parser_yystype.h:649
Enum_parser< Alter_info::enum_with_validation, Alter_info::ALTER_VALIDATION_DEFAULT > validation
Definition: parser_yystype.h:652
void init()
Definition: parser_yystype.h:653
Definition: parser_yystype.h:631
void init()
Definition: parser_yystype.h:638
Enum_parser< Alter_info::enum_alter_table_algorithm, Alter_info::ALTER_TABLE_ALGORITHM_DEFAULT > algo
Definition: parser_yystype.h:634
Enum_parser< Alter_info::enum_alter_table_lock, Alter_info::ALTER_TABLE_LOCK_DEFAULT > lock
Definition: parser_yystype.h:637
Definition: parser_yystype.h:612
int num_buckets
Definition: parser_yystype.h:613
LEX_STRING data
Definition: parser_yystype.h:614
Definition: parser_yystype.h:597
Json_on_response_type type
Definition: parser_yystype.h:598
Item * default_string
Definition: parser_yystype.h:599
used by the parser to store internal variable name
Definition: parser_yystype.h:168
sys_var * var
Definition: parser_yystype.h:169
LEX_CSTRING base_name
Definition: parser_yystype.h:170
struct xid_t is binary compatible with the XID structure as in the X/Open CAE Specification,...
Definition: xa.h:83
Explain_format_type
Values for explain_format sysvar.
Definition: system_variables.h:121
Json_on_response_type
Types of ON EMPTY/ON ERROR clauses for JSON_TABLE and JSON_VALUE.
Definition: table_function.h:192
enum_jt_column
Type of columns for JSON_TABLE function.
Definition: table_function.h:183
thr_lock_type
Definition: thr_lock.h:51
@ THR_NOWAIT
Definition: thr_lock.h:97
@ THR_SKIP
Definition: thr_lock.h:97
@ THR_DEFAULT
Definition: thr_lock.h:97
@ THR_WAIT
Definition: thr_lock.h:97
This file defines all base public constants related to triggers in MySQL.
enum_trigger_order_type
Possible trigger ordering clause values:
Definition: trigger_def.h:64
Definition: lexer_yystype.h:33
Definition: parser_yystype.h:340
Condition_information_item * cond_info_item
Definition: parser_yystype.h:416
PT_part_definition * part_definition
Definition: parser_yystype.h:537
PT_select_var_list * select_var_list
Definition: parser_yystype.h:466
chooser_compare_func_creator boolfunc2creator
Definition: parser_yystype.h:397
PT_start_option_value_list_following_option_type * start_option_value_list_following_option_type
Definition: parser_yystype.h:460
Mem_root_array< PT_partition_option * > * partition_option_list
Definition: parser_yystype.h:525
Mem_root_array< PT_role_or_privilege * > * role_or_privilege_list
Definition: parser_yystype.h:624
Table_ident * table_ident
Definition: parser_yystype.h:505
Parse_tree_root * top_level_node
Definition: parser_yystype.h:504
struct YYSTYPE::@137 load_set_element
Explain_format_type explain_format_type
Definition: parser_yystype.h:689
PT_group * group
Definition: parser_yystype.h:437
PT_table_constraint_def * table_constraint_def
Definition: parser_yystype.h:510
bool is_not_empty
Definition: parser_yystype.h:419
Mem_root_array< ulonglong > * thread_id_list_type
Definition: parser_yystype.h:688
PT_with_clause * with_clause
Definition: parser_yystype.h:520
struct YYSTYPE::@135 vcpu_range_type
List< Index_hint > * key_usage_list
Definition: parser_yystype.h:427
List< String > * string_list
Definition: parser_yystype.h:365
enum_null_treatment null_treatment
Definition: parser_yystype.h:445
Item_num * item_num
Definition: parser_yystype.h:363
ulonglong ulonglong_number
Definition: parser_yystype.h:357
enum_filetype filetype
Definition: parser_yystype.h:406
sp_condition_value * spcondvalue
Definition: parser_yystype.h:398
Query_block * query_block
Definition: parser_yystype.h:396
my_thread_id query_id
Definition: parser_yystype.h:711
Mem_root_array< PT_part_value_item_list_paren * > * part_value_list
Definition: parser_yystype.h:531
PT_partition * partition_clause
Definition: parser_yystype.h:543
struct YYSTYPE::@134 standalone_alter_table_action
Mem_root_array< PT_create_table_option * > * create_table_options
Definition: parser_yystype.h:552
PT_alter_tablespace_option_base * ts_option
Definition: parser_yystype.h:677
PT_frame * window_frame
Definition: parser_yystype.h:440
PT_table_reference * table_reference
Definition: parser_yystype.h:449
struct YYSTYPE::@122 lead_lag_info
PT_base_index_option * index_option
Definition: parser_yystype.h:516
List< String > * set_expr_str_list
Definition: parser_yystype.h:703
struct YYSTYPE::@112 lex_mfas
struct YYSTYPE::@136 explain_options_type
PT_preload_keys * preload_keys
Definition: parser_yystype.h:675
struct YYSTYPE::@129 create_table_tail
On_duplicate on_duplicate
Definition: parser_yystype.h:554
struct YYSTYPE::Histogram_param histogram_param
ha_storage_media storage_media
Definition: parser_yystype.h:557
Mem_root_array< PT_table_element * > * table_element_list
Definition: parser_yystype.h:584
PT_subquery * subquery
Definition: parser_yystype.h:478
Value_or_default< bool > resource_group_state_type
Definition: parser_yystype.h:685
PT_isolation_level * isolation_level
Definition: parser_yystype.h:457
Value_or_default< int > resource_group_priority_type
Definition: parser_yystype.h:684
LEX_MFA * mfa2
Definition: parser_yystype.h:373
fk_option fk_delete_opt
Definition: parser_yystype.h:571
Mem_root_array< PT_column_attr_base * > * col_attr_list
Definition: parser_yystype.h:558
Mem_root_array_YY< LEX_STRING > lex_str_list
Definition: parser_yystype.h:518
PT_derived_table * derived_table
Definition: parser_yystype.h:471
LEX_CSTRING anchor_trigger_name
Definition: parser_yystype.h:424
List< String > * columns
Definition: parser_yystype.h:618
PT_item_list * set_var_list
Definition: parser_yystype.h:701
PT_part_values * values
Definition: parser_yystype.h:535
LEX_USER * lex_user
Definition: parser_yystype.h:369
enum_from_first_last from_first_last
Definition: parser_yystype.h:446
struct YYSTYPE::@138 load_set_list
Item_string * item_string
Definition: parser_yystype.h:447
String * string
Definition: parser_yystype.h:366
LEX_MFA * mfa3
Definition: parser_yystype.h:373
PT_part_type_def * part_type_def
Definition: parser_yystype.h:542
interval_type interval_time_st
Definition: parser_yystype.h:394
fk_option m_fk_option
Definition: parser_yystype.h:408
struct YYSTYPE::@118 column_value_pair
PT_create_index_stmt * create_index_stmt
Definition: parser_yystype.h:509
Item * column
Definition: parser_yystype.h:484
PT_hint_list * hint_list
Definition: parser_yystype.h:347
ulong field_option
Definition: parser_yystype.h:560
PT_alter_table_action * alter_table_action
Definition: parser_yystype.h:627
Mem_root_array< PT_ddl_table_option * > * actions
Definition: parser_yystype.h:666
Alter_info::enum_alter_table_algorithm alter_table_algorithm
Definition: parser_yystype.h:629
struct YYSTYPE::@113 charset_with_opt_binary
PT_alter_table_standalone_action * alter_table_standalone_action
Definition: parser_yystype.h:628
PT_locking_clause * locking_clause
Definition: parser_yystype.h:593
const char * length
Definition: parser_yystype.h:389
LEX * lex
Definition: parser_yystype.h:403
const char * expr_start
Definition: parser_yystype.h:565
PT_key_part_specification * key_part
Definition: parser_yystype.h:479
enum_window_frame_unit frame_units
Definition: parser_yystype.h:441
Mem_root_array< PT_part_value_item * > * part_value_item_list
Definition: parser_yystype.h:529
Mem_root_array_YY< PT_table_reference * > table_reference_list
Definition: parser_yystype.h:467
PT_install_component_set_element * install_component_set_element
Definition: parser_yystype.h:714
int curs
Definition: parser_yystype.h:400
PT_insert_values_list * values_list
Definition: parser_yystype.h:503
Virtual_or_stored virtual_or_stored
Definition: parser_yystype.h:559
enum_drop_mode opt_restrict
Definition: parser_yystype.h:549
resourcegroups::platform::cpu_id_t end
Definition: parser_yystype.h:681
mem_root_deque< Item * > * item_list
Definition: parser_yystype.h:364
PT_subpartition * sub_part_definition
Definition: parser_yystype.h:526
Statement_information_item * stmt_info_item
Definition: parser_yystype.h:413
List< Key_part_spec > * reference_list
Definition: parser_yystype.h:574
PT_joined_table * join_table
Definition: parser_yystype.h:450
resourcegroups::platform::cpu_id_t start
Definition: parser_yystype.h:680
List< PT_key_part_specification > * index_column_list
Definition: parser_yystype.h:511
bool force_binary
Definition: parser_yystype.h:386
resourcegroups::Type resource_group_type
Definition: parser_yystype.h:687
struct YYSTYPE::@128 fk_references
udf_func * udf
Definition: parser_yystype.h:368
PT_locking_clause_list * locking_clause_list
Definition: parser_yystype.h:594
Item * where
Definition: parser_yystype.h:609
struct YYSTYPE::@117 query_expression_body_opt_parens
partition_type type
Definition: parser_yystype.h:534
struct YYSTYPE::@126 sp_default
LEX_STRING name
Definition: parser_yystype.h:513
PT_with_list * with_list
Definition: parser_yystype.h:521
Condition_information_item::Name cond_info_item_name
Definition: parser_yystype.h:417
Set_operator query_operator
Definition: parser_yystype.h:713
PT_exclusion * frame_exclusion
Definition: parser_yystype.h:444
Mem_root_array< PT_ddl_table_option * > * space_separated_alter_table_opts
Definition: parser_yystype.h:553
Item * expr
Definition: parser_yystype.h:566
PT_set_scoped_system_variable * option_value_following_option_type
Definition: parser_yystype.h:452
struct YYSTYPE::Algo_and_lock_and_validation algo_and_lock_and_validation
struct YYSTYPE::@139 insert_update_values_reference
Diagnostics_information * diag_info
Definition: parser_yystype.h:412
thr_lock_type lock_type
Definition: parser_yystype.h:393
Lexer_yystype lexer
Definition: parser_yystype.h:341
struct YYSTYPE::@127 fk_options
int conds
Definition: parser_yystype.h:400
Line_separators line_separators
Definition: parser_yystype.h:462
int num
Definition: parser_yystype.h:355
ha_rkey_function ha_rkey_mode
Definition: parser_yystype.h:380
PT_query_expression_body * query_expression_body
Definition: parser_yystype.h:472
PT_field_def_base * field_def
Definition: parser_yystype.h:568
bool resource_group_flag_type
Definition: parser_yystype.h:686
Alter_info::enum_alter_table_lock alter_table_lock
Definition: parser_yystype.h:630
Item * offset
Definition: parser_yystype.h:500
Ternary_option ternary_option
Definition: parser_yystype.h:550
PT_partition * opt_partitioning
Definition: parser_yystype.h:587
PT_column_def * column_def
Definition: parser_yystype.h:582
enum_ha_read_modes ha_read_mode
Definition: parser_yystype.h:381
Table_ident * table
Definition: parser_yystype.h:360
enum_order order_direction
Definition: parser_yystype.h:625
struct YYSTYPE::@123 index_name_and_type
Algo_and_lock_and_validation flags
Definition: parser_yystype.h:665
Hint_param_table_list hint_param_table_list
Definition: parser_yystype.h:350
PT_part_values * part_values
Definition: parser_yystype.h:532
PT_query_expression * query_expression
Definition: parser_yystype.h:470
enum_mysql_timestamp_type date_time_type
Definition: parser_yystype.h:395
Table_ident * table_name
Definition: parser_yystype.h:576
char * simple_string
Definition: parser_yystype.h:361
const CHARSET_INFO * charset
Definition: parser_yystype.h:385
enum_jt_column jt_column_type
Definition: parser_yystype.h:606
PT_item_list * value_list
Definition: parser_yystype.h:489
LEX_CSTRING lex_cstr
Definition: parser_yystype.h:358
PT_alter_instance * alter_instance_cmd
Definition: parser_yystype.h:508
Item * set_var
Definition: parser_yystype.h:696
XID * xid
Definition: parser_yystype.h:481
PT_add_partition * add_partition_rule
Definition: parser_yystype.h:544
PT_subselect * subselect
Definition: parser_yystype.h:428
PT_borders * frame_extent
Definition: parser_yystype.h:442
PT_part_value_item_list_paren * part_value_item_list_paren
Definition: parser_yystype.h:530
Index_hint * key_usage_element
Definition: parser_yystype.h:426
struct YYSTYPE::Algo_and_lock opt_index_lock_and_algorithm
PT_order * order
Definition: parser_yystype.h:448
Parse_tree_node * node
Definition: parser_yystype.h:435
bool is_analyze
Definition: parser_yystype.h:692
decltype(HA_CHECK_OPT::flags) flags
Definition: parser_yystype.h:546
enum_condition_item_name da_condition_item_name
Definition: parser_yystype.h:410
int hndlrs
Definition: parser_yystype.h:400
struct YYSTYPE::@132 histogram
enum_trigger_order_type ordering_clause
Definition: parser_yystype.h:423
Json_on_response error
Definition: parser_yystype.h:602
Acl_type acl_type
Definition: parser_yystype.h:621
Limit_options limit_options
Definition: parser_yystype.h:432
sys_var_with_base variable
Definition: parser_yystype.h:375
Mem_root_array< LEX_CSTRING > * lex_cstring_list
Definition: parser_yystype.h:622
LEX_STRING wild
Definition: parser_yystype.h:608
String * set_expr_str
Definition: parser_yystype.h:698
index_hint_type index_hint
Definition: parser_yystype.h:405
Mem_root_array_YY< PT_base_index_option * > index_options
Definition: parser_yystype.h:517
ts_alter_tablespace_type alter_tablespace_type
Definition: parser_yystype.h:705
Item * value
Definition: parser_yystype.h:485
Item * default_value
Definition: parser_yystype.h:501
List< Statement_information_item > * stmt_info_list
Definition: parser_yystype.h:415
decltype(HA_CHECK_OPT::sql_flags) sql_flags
Definition: parser_yystype.h:547
PT_limit_clause * limit_clause
Definition: parser_yystype.h:434
List< LEX_USER > * user_list
Definition: parser_yystype.h:370
PT_joined_table_type join_type
Definition: parser_yystype.h:451
PT_border * bound
Definition: parser_yystype.h:443
enum_source_type source_type
Definition: parser_yystype.h:407
struct YYSTYPE::@115 spblock
struct YYSTYPE::@130 json_on_error_or_empty
LEX_CSTRING table_alias
Definition: parser_yystype.h:708
Mem_root_array< resourcegroups::Range > * resource_group_vcpu_list_type
Definition: parser_yystype.h:683
sp_head * sphead
Definition: parser_yystype.h:404
struct YYSTYPE::@131 wild_or_where
PT_order_list * order_list
Definition: parser_yystype.h:431
ha_key_alg key_alg
Definition: parser_yystype.h:378
Item * set_expr
Definition: parser_yystype.h:697
List< Condition_information_item > * cond_info_list
Definition: parser_yystype.h:418
Mem_root_array< PT_alter_tablespace_option_base * > * ts_options
Definition: parser_yystype.h:678
Hint_param_index_list hint_param_index_list
Definition: parser_yystype.h:348
enum_var_type var_type
Definition: parser_yystype.h:376
enum_key_algorithm opt_key_algo
Definition: parser_yystype.h:540
Int_type int_type
Definition: parser_yystype.h:561
Mem_root_array< PT_subpartition * > * sub_part_list
Definition: parser_yystype.h:527
PT_start_option_value_list * start_option_value_list
Definition: parser_yystype.h:455
PT_set * set
Definition: parser_yystype.h:461
enum row_type row_type
Definition: parser_yystype.h:379
PT_common_table_expr * common_table_expr
Definition: parser_yystype.h:522
PT_select_var * select_var_ident
Definition: parser_yystype.h:465
PT_sub_partition * opt_sub_part
Definition: parser_yystype.h:541
PTI_text_literal * text_literal
Definition: parser_yystype.h:469
struct YYSTYPE::@119 column_value_list_pair
opt_hints_enum hint_type
Definition: parser_yystype.h:345
ulong ulong_num
Definition: parser_yystype.h:356
PT_query_expression_body * body
Definition: parser_yystype.h:474
PT_column_attr_base * col_attr
Definition: parser_yystype.h:555
enum_yes_no_unknown m_yes_no_unk
Definition: parser_yystype.h:409
struct YYSTYPE::Json_on_response json_on_response
Query_options select_options
Definition: parser_yystype.h:433
PT_window * window
Definition: parser_yystype.h:439
LEX_STRING * lex_str_ptr
Definition: parser_yystype.h:359
PT_create_table_option * create_table_option
Definition: parser_yystype.h:551
Numeric_type numeric_type
Definition: parser_yystype.h:563
enum_tx_isolation tx_isolation
Definition: parser_yystype.h:382
struct YYSTYPE::@133 alter_list
PT_part_value_item * part_value_item
Definition: parser_yystype.h:528
const char * dec
Definition: parser_yystype.h:390
fk_option fk_update_opt
Definition: parser_yystype.h:570
PT_insert_values_list * row_value_list
Definition: parser_yystype.h:493
PT_hint * hint
Definition: parser_yystype.h:346
Histogram_param * param
Definition: parser_yystype.h:619
PT_item_list * column_list
Definition: parser_yystype.h:488
LEX_MFA * lex_mfa
Definition: parser_yystype.h:371
PT_type * type
Definition: parser_yystype.h:562
PT_query_expression_body * insert_query_expression
Definition: parser_yystype.h:497
bool is_parenthesized
Definition: parser_yystype.h:475
PT_window_list * windows
Definition: parser_yystype.h:438
Mem_root_array_YY< Table_ident * > table_ident_list
Definition: parser_yystype.h:506
Mem_root_array< PT_assign_to_keycache * > * keycache_list
Definition: parser_yystype.h:673
delete_option_enum opt_delete_option
Definition: parser_yystype.h:507
PT_json_table_column * jt_column
Definition: parser_yystype.h:605
Alter_info::enum_with_validation with_validation
Definition: parser_yystype.h:626
Cast_type cast_type
Definition: parser_yystype.h:392
PT_alter_table_standalone_action * action
Definition: parser_yystype.h:670
sp_name * spname
Definition: parser_yystype.h:402
PT_item_list * set_expr_list
Definition: parser_yystype.h:702
fk_match_opt opt_match_clause
Definition: parser_yystype.h:573
Show_cmd_type show_cmd_type
Definition: parser_yystype.h:611
PT_option_value_list_head * option_value_list
Definition: parser_yystype.h:454
Mem_root_array< PT_part_definition * > * part_def_list
Definition: parser_yystype.h:538
Lock_strength lock_strength
Definition: parser_yystype.h:591
Json_on_response empty
Definition: parser_yystype.h:603
Create_col_name_list simple_ident_list
Definition: parser_yystype.h:523
PT_adm_partition * adm_partition
Definition: parser_yystype.h:674
PT_table_element * table_element
Definition: parser_yystype.h:583
struct YYSTYPE::@124 opt_part_values
const char * c_str
Definition: parser_yystype.h:383
interval_type interval
Definition: parser_yystype.h:394
struct YYSTYPE::@114 precision
PT_transaction_characteristics * transaction_characteristics
Definition: parser_yystype.h:458
Mem_root_array< PT_preload_keys * > * preload_list
Definition: parser_yystype.h:676
Mem_root_array< PT_json_table_column * > * jtc_list
Definition: parser_yystype.h:595
Create_col_name_list * column_list
Definition: parser_yystype.h:709
bool visibility
Definition: parser_yystype.h:519
List< PT_install_component_set_element > * install_component_set_list
Definition: parser_yystype.h:715
List< char > * name_list
Definition: parser_yystype.h:539
Locked_row_action locked_row_action
Definition: parser_yystype.h:592
PT_item_list * item_list2
Definition: parser_yystype.h:429
Set_signal_information * signal_item_list
Definition: parser_yystype.h:420
Item * item
Definition: parser_yystype.h:362
PT_into_destination * into_destination
Definition: parser_yystype.h:464
int vars
Definition: parser_yystype.h:400
fk_match_opt fk_match_option
Definition: parser_yystype.h:578
Field_separators field_separators
Definition: parser_yystype.h:463
column_format_type column_format
Definition: parser_yystype.h:556
enum olap_type olap_type
Definition: parser_yystype.h:436
bool is_explicit
Definition: parser_yystype.h:693
PT_partition_option * partition_option
Definition: parser_yystype.h:524
PT_query_primary * query_primary
Definition: parser_yystype.h:477
Sql_cmd_analyze_table::Histogram_command command
Definition: parser_yystype.h:617
PT_order_expr * order_expr
Definition: parser_yystype.h:430
Bipartite_name bipartite_name
Definition: parser_yystype.h:712
Mem_root_array< Table_ident * > * table_list
Definition: parser_yystype.h:367
Hint_param_table hint_param_table
Definition: parser_yystype.h:349
struct YYSTYPE::@120 column_row_value_list_pair
Diagnostics_information::Which_area diag_area
Definition: parser_yystype.h:411
struct YYSTYPE::@125 mi_type
PT_query_expression_body * opt_query_expression
Definition: parser_yystype.h:589
Item_param * param_marker
Definition: parser_yystype.h:468
PT_option_value_no_option_type * option_value_no_option_type
Definition: parser_yystype.h:453
PT_assign_to_keycache * assign_to_keycache
Definition: parser_yystype.h:672
Mem_root_array< PT_create_table_option * > * opt_create_table_options
Definition: parser_yystype.h:586
Sql_cmd_srs_attributes * sql_cmd_srs_attributes
Definition: parser_yystype.h:706
PT_base_index_option * type
Definition: parser_yystype.h:514
xa_option_words xa_option_type
Definition: parser_yystype.h:482
PT_role_or_privilege * role_or_privilege
Definition: parser_yystype.h:623
keytype key_type
Definition: parser_yystype.h:377
Statement_information_item::Name stmt_info_item_name
Definition: parser_yystype.h:414
struct YYSTYPE::@116 trg_characteristics
enum_trigger_order_type trigger_action_order_type
Definition: parser_yystype.h:421
PT_transaction_access_mode * transaction_access_mode
Definition: parser_yystype.h:456
enum_null_treatment
Cf.
Definition: window_lex.h:58
enum_window_frame_unit
Cf.
Definition: window_lex.h:31
enum_from_first_last
Cf.
Definition: window_lex.h:63
xa_option_words
Definition: xa.h:53