28#ifndef PARSE_TREE_HINTS_INCLUDED
29#define PARSE_TREE_HINTS_INCLUDED
137 :
PT_hint(hint_type_arg, switch_state_arg),
144 :
PT_hint(hint_type_arg, switch_state_arg),
186 :
PT_hint(hint_type_arg, switch_state_arg),
217 :
PT_hint(hint_type_arg, switch_state_arg),
298 Item *sys_var_value_arg)
void append_identifier(String *packet, const char *name, size_t length)
Convert and quote the given identifier if needed and append it to the target string.
Definition: sql_show.cc:1464
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:853
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Definition: parse_tree_hints.h:98
PT_hint_list(MEM_ROOT *mem_root)
Definition: parse_tree_hints.h:104
bool contextualize(Parse_context *pc) override
Function handles list of the hints we get after parse procedure.
Definition: parse_tree_hints.cc:338
Parse_tree_node super
Definition: parse_tree_hints.h:99
bool push_back(PT_hint *hint)
Definition: parse_tree_hints.h:118
Mem_root_array< PT_hint * > hints
Definition: parse_tree_hints.h:101
Parse tree hint object for MAX_EXECUTION_TIME hint.
Definition: parse_tree_hints.h:267
PT_hint_max_execution_time(ulong milliseconds_arg)
Definition: parse_tree_hints.h:273
PT_hint super
Definition: parse_tree_hints.h:268
void append_args(const THD *, String *str) const override
Append additional hint arguments.
Definition: parse_tree_hints.h:285
bool contextualize(Parse_context *pc) override
Function initializes MAX_EXECUTION_TIME hint.
Definition: parse_tree_hints.cc:497
ulong milliseconds
Definition: parse_tree_hints.h:271
Parse tree hint object for QB_NAME hint.
Definition: parse_tree_hints.h:240
const LEX_CSTRING qb_name
Definition: parse_tree_hints.h:241
void append_args(const THD *thd, String *str) const override
Append additional hint arguments.
Definition: parse_tree_hints.h:258
bool contextualize(Parse_context *pc) override
Function sets query block name.
Definition: parse_tree_hints.cc:478
PT_hint super
Definition: parse_tree_hints.h:243
PT_hint_qb_name(const LEX_CSTRING qb_name_arg)
Definition: parse_tree_hints.h:246
Parse tree hint object for RESOURCE_GROUP hint.
Definition: parse_tree_hints.h:317
bool contextualize(Parse_context *pc) override
Function initializes resource group name and checks for presence of resource group.
Definition: parse_tree_hints.cc:566
void append_args(const THD *thd, String *str) const override
Append hint arguments to given string.
Definition: parse_tree_hints.h:346
PT_hint super
Definition: parse_tree_hints.h:320
PT_hint_resource_group(const LEX_CSTRING &name)
Definition: parse_tree_hints.h:323
const LEX_CSTRING m_resource_group_name
Definition: parse_tree_hints.h:318
Definition: parse_tree_hints.h:290
PT_hint_sys_var(const LEX_CSTRING sys_var_name_arg, Item *sys_var_value_arg)
Definition: parse_tree_hints.h:297
Item * sys_var_value
Definition: parse_tree_hints.h:292
const LEX_CSTRING sys_var_name
Definition: parse_tree_hints.h:291
bool contextualize(Parse_context *pc) override
Function initializes SET_VAR hint.
Definition: parse_tree_hints.cc:524
PT_hint super
Definition: parse_tree_hints.h:294
The class is a base class for representation of the different types of the hints.
Definition: parse_tree_hints.h:58
PT_hint(opt_hints_enum hint_type_arg, bool switch_state_arg)
Definition: parse_tree_hints.h:62
virtual void print_warn(THD *thd, uint err_code, const LEX_CSTRING *qb_name_arg, LEX_CSTRING *table_name_arg, LEX_CSTRING *key_name_arg, PT_hint *hint) const
Print warning issuing in processing of the hint.
Definition: parse_tree_hints.cc:173
bool state
Definition: parse_tree_hints.h:60
opt_hints_enum hint_type
Definition: parse_tree_hints.h:59
bool switch_on() const
Definition: parse_tree_hints.h:66
virtual void append_args(const THD *thd, String *str) const
Append additional hint arguments.
Definition: parse_tree_hints.h:87
bool supports_view()
Definition: parse_tree_hints.h:89
opt_hints_enum type() const
Definition: parse_tree_hints.h:65
Parse tree hint object for key level hints.
Definition: parse_tree_hints.h:207
void append_args(const THD *thd, String *str) const override
Append additional hint arguments.
Definition: parse_tree_hints.cc:393
Hint_param_table table_name
Definition: parse_tree_hints.h:208
PT_key_level_hint(Hint_param_table &table_name_arg, const Hint_param_index_list &key_list_arg, bool switch_state_arg, opt_hints_enum hint_type_arg)
Definition: parse_tree_hints.h:214
bool contextualize(Parse_context *pc) override
Function handles key level hint.
Definition: parse_tree_hints.cc:406
Hint_param_index_list key_list
Definition: parse_tree_hints.h:209
PT_hint super
Definition: parse_tree_hints.h:211
Parse tree hint object for query block level hints.
Definition: parse_tree_hints.h:124
PT_qb_level_hint(const LEX_CSTRING qb_name_arg, bool switch_state_arg, enum opt_hints_enum hint_type_arg, uint arg)
Definition: parse_tree_hints.h:135
void append_args(const THD *thd, String *str) const override
Append hint arguments to given string.
Definition: parse_tree_hints.cc:287
Hint_param_table_list table_list
List of tables specified in join order hint.
Definition: parse_tree_hints.h:130
const LEX_CSTRING qb_name
Name of query block.
Definition: parse_tree_hints.h:126
PT_hint super
Definition: parse_tree_hints.h:132
uint get_args() const
Definition: parse_tree_hints.h:149
virtual Hint_param_table_list * get_table_list()
Definition: parse_tree_hints.h:169
PT_qb_level_hint(const LEX_CSTRING qb_name_arg, bool switch_state_arg, enum opt_hints_enum hint_type_arg, const Hint_param_table_list &table_list_arg)
Definition: parse_tree_hints.h:141
uint args
Bit mask of arguments to hint.
Definition: parse_tree_hints.h:128
bool contextualize(Parse_context *pc) override
Function handles query block level hint.
Definition: parse_tree_hints.cc:225
Parse tree hint object for table level hints.
Definition: parse_tree_hints.h:176
PT_table_level_hint(const LEX_CSTRING qb_name_arg, const Hint_param_table_list &table_list_arg, bool switch_state_arg, opt_hints_enum hint_type_arg)
Definition: parse_tree_hints.h:183
bool contextualize(Parse_context *pc) override
Function handles table level hint.
Definition: parse_tree_hints.cc:354
Hint_param_table_list table_list
Definition: parse_tree_hints.h:178
const LEX_CSTRING qb_name
Definition: parse_tree_hints.h:177
PT_hint super
Definition: parse_tree_hints.h:180
Base class for parse tree nodes (excluding the Parse_tree_root hierarchy)
Definition: parse_tree_node_base.h:139
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:168
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:34
static MEM_ROOT mem_root
Definition: client_plugin.cc:110
Header for compiler-dependent features.
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1052
opt_hints_enum
Hint types, MAX_HINT_ENUM should be always last.
Definition: opt_hints.h:64
@ MAX_HINT_ENUM
Definition: opt_hints.h:88
@ ORDER_INDEX_HINT_ENUM
Definition: opt_hints.h:86
@ RESOURCE_GROUP_HINT_ENUM
Definition: opt_hints.h:80
@ QB_NAME_HINT_ENUM
Definition: opt_hints.h:71
@ MAX_EXEC_TIME_HINT_ENUM
Definition: opt_hints.h:70
@ INDEX_HINT_ENUM
Definition: opt_hints.h:83
Mem_root_array_YY< LEX_CSTRING > Hint_param_index_list
Definition: parse_tree_hints.h:50
Mem_root_array_YY< Hint_param_table > Hint_param_table_list
Definition: parse_tree_hints.h:51
Our own string classes, used pervasively throughout the executor.
case opt name
Definition: sslopt-case.h:33
Definition: parse_tree_hints.h:45
LEX_CSTRING table
Definition: parse_tree_hints.h:46
LEX_CSTRING opt_query_block
Definition: parse_tree_hints.h:47
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: mysql_lex_string.h:40
const char * str
Definition: mysql_lex_string.h:41
size_t length
Definition: mysql_lex_string.h:42
Environment data for the contextualization phase.
Definition: parse_tree_node_base.h:121
unsigned int uint
Definition: uca9-dump.cc:75