147#define store_record(A, B) \
148 memcpy((A)->B, (A)->record[0], (size_t)(A)->s->reclength)
149#define restore_record(A, B) \
150 memcpy((A)->record[0], (A)->B, (size_t)(A)->s->reclength)
151#define cmp_record(A, B) \
152 memcmp((A)->record[0], (A)->B, (size_t)(A)->s->reclength)
154#define tmp_file_prefix "#sql"
155#define tmp_file_prefix_length 4
156#define TMP_TABLE_KEY_EXTRA 8
157#define PLACEHOLDER_TABLE_ROW_ESTIMATE 2
633 uint deadlock_weight_arg)
1089 memcpy(key_buff,
key, key_length);
1197 uint deadlock_weight);
1373#define STATUS_NOT_STARTED 1
1379#define STATUS_NOT_FOUND 2
1381#define STATUS_UPDATED 16
1386#define STATUS_NULL_ROW 32
1388#define STATUS_DELETED 64
1890 uint *blob_fld,
bool is_virtual);
1897 uint key_parts = 0)
const;
1956 assert(index_no < s->
keys);
1973 assert((
file ==
nullptr && file_arg !=
nullptr) ||
1974 (
file !=
nullptr && file_arg ==
nullptr));
2172 Key_map *covering_prefix_keys);
2424#define MY_I_S_MAYBE_NULL 1
2425#define MY_I_S_UNSIGNED 2
2480#define VIEW_SUID_INVOKER 0
2481#define VIEW_SUID_DEFINER 1
2482#define VIEW_SUID_DEFAULT 2
2485#define VIEW_CHECK_NONE 0
2486#define VIEW_CHECK_LOCAL 1
2487#define VIEW_CHECK_CASCADED 2
2490#define VIEW_CHECK_OK 0
2491#define VIEW_CHECK_ERROR 1
2492#define VIEW_CHECK_SKIP 2
2495#define MAX_TDC_BLOB_SIZE 65536
2813 const char *table_name_arg,
size_t table_name_length_arg,
2831 alias, lock_type) {}
2874 alias(table_name_arg),
2885 const char *table_name_arg,
size_t table_name_length_arg,
2890 alias(table_name_arg),
2901 const char *table_name_arg,
size_t table_name_length_arg,
2905 alias(table_name_arg),
2916 const char *table_name_arg,
size_t table_name_length_arg,
2930 const char *table_name_arg,
size_t table_name_length_arg,
2946 const char *table_name_arg,
size_t table_name_length_arg,
2977 assert(cond ==
nullptr || cond == (
Item *)1 ||
m_join_cond !=
nullptr);
3166 tr->m_updated =
true;
3175 tr->m_inserted =
true;
3184 tr->m_deleted =
true;
3411 if (emb->outer_join)
return true;
3985 const char *
name()
override;
4003 const char *
name()
override;
4024 void next()
override;
4059 void next()
override;
4121 MY_BITMAP *write_set [[maybe_unused]]) {
4123 save[0] = read_set->bitmap;
4124 save[1] = write_set->bitmap;
4174 const char *source_name,
Field *field,
4175 bool is_create_table,
bool *error_reported);
4193 handlerton *engine_type,
bool is_create_table);
4197 TABLE *outparam,
bool is_create_table,
4200 const char *
key,
size_t key_length,
4201 bool open_secondary);
4209 bool preserve_lettercase);
4219int set_zone(
int nr,
int min_zone,
int max_zone);
4276 return (!strcmp(
"performance_schema", tl->
db) &&
4278 strstr(tl->
table_name,
"setup_") ==
nullptr);
4293 uint *usable_parts,
bool use_extended_sk);
4296 uint key_part_n,
uint *usable_parts,
4297 bool part_of_key_not_extended);
4313 if (!tl->
table)
return false;
4320 if (!tl->
table->
s)
return false;
4382 if (cte ==
nullptr) {
4389 while (ref_idx < cte->tmp_tables.size()) {
4391 if (table !=
nullptr)
return table;
4531 const char *db,
const char *table,
4532 bool is_fix_view_cols_and_deps);
uint32_t Access_bitmask
Definition: auth_acls.h:34
int64 query_id_t
Definition: binlog.h:72
Per internal schema ACL access rules.
Definition: auth_common.h:147
Per internal table ACL access rules.
Definition: auth_common.h:109
RAII class to reset TABLE::autoinc_field_has_explicit_non_null_value after processing individual row ...
Definition: table.h:4411
TABLE * m_table
Definition: table.h:4420
Autoinc_field_has_explicit_non_null_value_reset_guard(TABLE *table)
Definition: table.h:4413
~Autoinc_field_has_explicit_non_null_value_reset_guard()
Definition: table.h:4415
Class that represents a single change to a column value in partial update of a JSON column.
Definition: table.h:1317
const char * old_data(const Field *field) const
Get a pointer to the start of the old data to be replaced.
Definition: table.cc:7699
size_t length() const
Definition: table.h:1338
size_t m_length
The size of the portion that is to be replaced.
Definition: table.h:1322
const char * new_data(const Field *field) const
Get a pointer to the start of the replacement data.
Definition: table.cc:7690
Binary_diff(size_t offset, size_t length)
Create a new Binary_diff object.
Definition: table.h:1331
size_t m_offset
The offset of the start of the change.
Definition: table.h:1319
size_t offset() const
Definition: table.h:1335
Definition: sql_bitmap.h:138
Class is used as a BLOB field value storage for intermediate GROUP_CONCAT results.
Definition: table.h:1277
bool truncated_value
Sign that some values were cut during saving into the storage.
Definition: table.h:1284
Blob_mem_storage()
Definition: table.cc:4069
void reset()
Definition: table.h:1290
void set_truncated_value(bool is_truncated_value)
Definition: table.h:1307
MEM_ROOT storage
Definition: table.h:1279
~Blob_mem_storage()
Definition: table.cc:4073
bool is_truncated_value() const
Definition: table.h:1310
char * store(const char *from, size_t length)
Function creates duplicate of 'from' string in 'storage' MEM_ROOT.
Definition: table.h:1304
Definition: item_cmpfunc.h:2708
After parsing, a Common Table Expression is accessed through a Table_ref.
Definition: table.h:4333
Common_table_expr(MEM_ROOT *mem_root)
Definition: table.h:4335
LEX_STRING name
Name of the WITH block. Used only for EXPLAIN FORMAT=tree.
Definition: table.h:4359
TABLE * clone_tmp_table(THD *thd, Table_ref *tl)
Produces, from the first tmp TABLE object, a clone TABLE object for Table_ref 'tl',...
Definition: sql_derived.cc:170
bool clear_all_references()
Empties the materialized CTE and informs all of its clones.
Definition: sql_union.cc:1598
bool recursive
True if it's a recursive CTE.
Definition: table.h:4350
Mem_root_array< Table_ref * > references
All references to this CTE in the statement, except those inside the query expression defining this C...
Definition: table.h:4348
void remove_table(Table_ref *tr)
Remove one table reference.
Definition: sql_derived.cc:253
bool substitute_recursive_reference(THD *thd, Query_block *sl)
Replaces the recursive reference in query block 'sl' with a clone of the first tmp table.
Definition: sql_derived.cc:240
Mem_root_array< Table_ref * > tmp_tables
List of all TABLE_LISTSs reading/writing to the tmp table created to materialize this CTE.
Definition: table.h:4357
API for getting cost estimates for server operations that are not directly related to a table object.
Definition: opt_costmodel.h:52
API for getting cost estimates for operations on table data.
Definition: opt_costmodel.h:240
void init(const Cost_model_server *cost_model_server, const TABLE *table)
Initializes the cost model object.
Definition: opt_costmodel.cc:61
Default_object_creation_ctx – default implementation of Object_creation_ctx.
Definition: table.h:222
const CHARSET_INFO * get_client_cs()
Definition: table.h:224
void change_env(THD *thd) const override
Definition: table.cc:212
void delete_backup_ctx() override
Definition: table.cc:210
Default_object_creation_ctx(THD *thd)
Definition: table.cc:197
const CHARSET_INFO * get_connection_cl()
Definition: table.h:226
Object_creation_ctx * create_backup_ctx(THD *thd) const override
Definition: table.cc:205
const CHARSET_INFO * m_connection_cl
connection_cl stores the value of collation_connection session variable.
Definition: table.h:260
const CHARSET_INFO * m_client_cs
client_cs stores the value of character_set_client session variable.
Definition: table.h:250
This structure is used to keep info about possible key for the result table of a derived table/view.
Definition: table.h:2750
table_map referenced_by
Definition: table.h:2752
Field_map used_fields
Definition: table.h:2753
uint key_part_count
Definition: table.h:2754
This iterates on those references to a derived table / view / CTE which are materialized.
Definition: table.h:4372
bool is_first() const
Definition: table.h:4400
TABLE * get_next()
Definition: table.h:4378
Table_ref *const start
The reference provided in construction.
Definition: table.h:4373
Derived_refs_iterator(Table_ref *start_arg)
Definition: table.h:4377
bool m_is_first
True when at first reference in list.
Definition: table.h:4375
size_t ref_idx
Current index in cte->tmp_tables.
Definition: table.h:4374
void rewind()
Definition: table.h:4395
These members were removed from TABLE_SHARE as they are not used in in the code.
Definition: table.h:4457
utype
Definition: table.h:4472
@ CASEUP
Definition: table.h:4477
@ NO
Definition: table.h:4482
@ NONE
Definition: table.h:4473
@ REL
Definition: table.h:4483
@ NEXT_NUMBER
Definition: table.h:4489
@ DATE
Definition: table.h:4474
@ PNR
Definition: table.h:4478
@ BIT_FIELD
Definition: table.h:4491
@ TIMESTAMP_OLD_FIELD
Definition: table.h:4492
@ GENERATED_FIELD
Definition: table.h:4498
@ INTERVAL_FIELD
Definition: table.h:4490
@ TIMESTAMP_UN_FIELD
Definition: table.h:4496
@ NOEMPTY
Definition: table.h:4476
@ CHECK
Definition: table.h:4484
@ YES
Definition: table.h:4481
@ TIMESTAMP_DNUN_FIELD
Definition: table.h:4497
@ BLOB_FIELD
Definition: table.h:4494
@ UNKNOWN_FIELD
Definition: table.h:4487
@ CASEDN
Definition: table.h:4488
@ TIMESTAMP_DN_FIELD
Definition: table.h:4495
@ PGNR
Definition: table.h:4480
@ EMPTY_VAL
Definition: table.h:4485
@ CAPITALIZE
Definition: table.h:4493
@ SHIELD
Definition: table.h:4475
@ BGNR
Definition: table.h:4479
bool null_field_first
Definition: table.h:4468
uchar frm_version
Definition: table.h:4506
handlerton * default_part_db_type
Definition: table.h:4467
TYPELIB fieldnames
Definition: table.h:4507
const File_parser * view_def
For shares representing views File_parser object with view definition read from .FRM file.
Definition: table.h:4505
uint stored_fields
Definition: table.h:4469
FRM_context()
Definition: table.h:4459
~Field_iterator_natural_join() override=default
Natural_join_column * column_ref()
Definition: table.h:4031
void next() override
Definition: table.cc:5129
void set(Table_ref *table) override
Definition: table.cc:5123
Natural_join_column * cur_column_ref
Definition: table.h:4018
Field_iterator_natural_join()
Definition: table.h:4021
const char * name() override
Definition: table.h:4026
List_iterator_fast< Natural_join_column > column_ref_it
Definition: table.h:4017
bool end_of_fields() override
Definition: table.h:4025
Item * create_item(THD *thd) override
Definition: table.h:4027
Field * field() override
Definition: table.h:4030
Generic iterator over the fields of an arbitrary table reference.
Definition: table.h:4048
Field_iterator * field_it
Definition: table.h:4053
Field_iterator_view view_field_it
Definition: table.h:4051
Table_ref * table_ref
Definition: table.h:4049
const char * get_table_name()
Definition: table.cc:5202
Field * field() override
Definition: table.h:4068
const char * get_db_name()
Definition: table.cc:5209
Field_iterator_table_ref()
Definition: table.h:4057
void set(Table_ref *table) override
Definition: table.cc:5179
Natural_join_column * get_or_create_column_ref(THD *thd, Table_ref *parent_table_ref)
Create new or return existing column reference to a column of a natural/using join.
Definition: table.cc:5270
Table_ref * first_leaf
Definition: table.h:4049
GRANT_INFO * grant()
Definition: table.cc:5229
void next() override
Definition: table.cc:5188
Field_iterator_table table_field_it
Definition: table.h:4050
Table_ref * last_leaf
Definition: table.h:4049
const char * name() override
Definition: table.h:4063
Natural_join_column * get_natural_column_ref()
Return an existing reference to a column of a natural/using join.
Definition: table.cc:5350
void set_field_iterator()
Definition: table.cc:5136
Item * create_item(THD *thd) override
Definition: table.h:4067
bool end_of_fields() override
Definition: table.h:4060
Field_iterator_natural_join natural_join_it
Definition: table.h:4052
const char * name() override
Definition: table.cc:5046
Field ** ptr
Definition: table.h:3977
Item * create_item(THD *thd) override
Definition: table.cc:5048
void set_table(TABLE *table)
Definition: table.h:3982
void next() override
Definition: table.h:3983
Field_iterator_table()
Definition: table.h:3980
bool end_of_fields() override
Definition: table.h:3984
void set(Table_ref *table) override
Definition: table.h:3981
Field * field() override
Definition: table.h:3987
Iterator over the fields of a merged derived table or view.
Definition: table.h:3994
void next() override
Definition: table.h:4001
Item * item()
Definition: table.h:4007
Table_ref * view
Definition: table.h:3996
Field_iterator_view()
Definition: table.h:3999
Field_translator * field_translator()
Definition: table.h:4008
Item ** item_ptr()
Definition: table.h:4005
void set(Table_ref *table) override
Definition: table.cc:5039
Field * field() override
Definition: table.h:4006
Field_translator * array_end
Definition: table.h:3995
Item * create_item(THD *thd) override
Definition: table.cc:5066
const char * name() override
Definition: table.cc:5064
Field_translator * ptr
Definition: table.h:3995
bool end_of_fields() override
Definition: table.h:4002
virtual const char * name()=0
virtual Field * field()=0
virtual void set(Table_ref *)=0
virtual ~Field_iterator()=default
virtual Item * create_item(THD *)=0
virtual bool end_of_fields()=0
A field that stores a JSON value.
Definition: field.h:3987
Definition: parse_file.h:87
Definition: sql_auth_cache.h:475
Base class to be used by handlers different shares.
Definition: handler.h:3956
Intrusive parameterized list.
Definition: sql_plist.h:75
Definition: sql_lex.h:486
A wrapper Item that normally returns its parameter, but becomes NULL when processing rows for rollup.
Definition: item_func.h:1614
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:853
Query optimization plan node.
Definition: sql_select.h:599
Vector of logical diffs describing changes to a JSON column.
Definition: json_diff.h:141
A path expression which can be used to seek to a position inside a JSON value.
Definition: json_path.h:302
Abstraction for accessing JSON values irrespective of whether they are (started out as) binary JSON v...
Definition: json_dom.h:1161
ulong flags
dupp key and pack flags
Definition: key.h:118
Definition: sql_list.h:594
Definition: sql_list.h:434
Context of the owner of metadata locks.
Definition: mdl.h:1411
A pending metadata lock request.
Definition: mdl.h:801
void set_type(enum_mdl_type type_arg)
Set type of lock request.
Definition: mdl.h:852
A granted metadata lock.
Definition: mdl.h:984
An abstract class for inspection of a connected subgraph of the wait-for graph.
Definition: mdl.h:919
Abstract class representing an edge in the waiters graph to be traversed by deadlock detection algori...
Definition: mdl.h:945
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Storage for name strings.
Definition: item.h:288
Item * create_item(THD *thd)
Definition: table.cc:5000
Item_field * table_field
Definition: table.h:2519
Field_translator * view_field
Definition: table.h:2518
Natural_join_column(Field_translator *field_param, Table_ref *tab)
Definition: table.cc:4968
const char * name()
Definition: table.cc:4991
Table_ref * table_ref
Definition: table.h:2520
bool is_common
Definition: table.h:2528
const char * db_name()
Definition: table.cc:5023
GRANT_INFO * grant()
Definition: table.cc:5037
Field * field()
Definition: table.cc:5010
const char * table_name()
Definition: table.cc:5018
Object_creation_ctx – interface for creation context of database objects (views, stored routines,...
Definition: table.h:198
void restore_env(THD *thd, Object_creation_ctx *backup_ctx)
Definition: table.cc:185
Object_creation_ctx()=default
virtual Object_creation_ctx * create_backup_ctx(THD *thd) const =0
virtual void change_env(THD *thd) const =0
virtual void delete_backup_ctx()=0
virtual ~Object_creation_ctx()=default
Object_creation_ctx * set_n_backup(THD *thd)
Definition: table.cc:175
Query block level hints.
Definition: opt_hints.h:377
Table level hints.
Definition: opt_hints.h:554
Definition: sql_executor.h:260
TABLE * table() const
Definition: sql_opt_exec_shared.h:504
uint index() const
Definition: sql_opt_exec_shared.h:522
This class represents a query block, aka a query specification, which is a query consisting of a SELE...
Definition: sql_lex.h:1160
This class represents a query expression (one query block or several query blocks combined with UNION...
Definition: sql_lex.h:623
Definition: sql_union.h:40
This class represents a buffer that can be used for multi-row reads.
Definition: record_buffer.h:47
A set of THD members describing the current authenticated user.
Definition: sql_security_ctx.h:55
Definition: sql_sort.h:156
An adapter that takes in another RowIterator and produces the same rows, just in sorted order.
Definition: sorting_iterator.h:56
Class to represent check constraint in the TABLE_SHARE.
Definition: sql_check_constraint.h:110
Class to represent check constraint in the TABLE instance.
Definition: sql_check_constraint.h:145
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
Element that represents the table in the specific table cache.
Definition: table_cache.h:229
Table_check_intact()
Definition: table.h:602
bool has_keys
Definition: table.h:598
virtual void report_error(uint code, const char *fmt,...)=0
bool check(THD *thd, TABLE *table, const TABLE_FIELD_DEF *table_def)
Checks whether a table is intact.
Definition: table.cc:3726
virtual ~Table_check_intact()=default
Class representing a table function.
Definition: table_function.h:53
Each table share has a table id, it is mainly used for row based replication.
Definition: table_id.h:40
bool m_inserted
True if table is target of INSERT statement.
Definition: table.h:3736
LEX_STRING view_body_utf8
Definition: table.h:3843
bool force_index_group_saved
Definition: table.h:3949
bool view_no_explain
if true, EXPLAIN can't explain view due to insufficient rights.
Definition: table.h:3872
Common_table_expr * m_common_table_expr
If non-NULL, the CTE which this table is derived from.
Definition: table.h:3612
bool is_base_table() const
Definition: table.h:3075
bool m_is_sj_or_aj_nest
Definition: table.h:3528
const char * get_table_name() const
Returns the name of the table that this Table_ref represents.
Definition: table.h:3359
Key_map keys_in_use_for_group_by_saved
Definition: table.h:3944
List< String > * join_using_fields
Definition: table.h:3553
void set_privileges(Access_bitmask privilege)
Set granted privileges for a table.
Definition: table.h:3476
Item * derived_where_cond
WHERE condition from derived table.
Definition: table.h:3682
char timestamp_buffer[20]
Definition: table.h:3785
@ OPEN_IF_EXISTS
Definition: table.h:3799
@ OPEN_STUB
Definition: table.h:3806
@ OPEN_FOR_CREATE
Definition: table.h:3804
bool process_index_hints(const THD *thd, TABLE *table)
Compiles the tagged hints list and fills up TABLE::keys_in_use_for_query, TABLE::keys_in_use_for_grou...
Definition: table.cc:6354
MY_BITMAP read_set_saved
Definition: table.h:3951
bool is_updatable() const
Return true if table is updatable.
Definition: table.h:3149
ulonglong with_check
WITH CHECK OPTION.
Definition: table.h:3706
Table_id table_id
Definition: table.h:3573
void set_lock(const Lock_descriptor &descriptor)
Definition: table.h:3505
Table_ref(TABLE *table_arg, const char *alias_arg)
This constructor can be used when a Table_ref is needed for an existing temporary table.
Definition: table.h:2840
Lock_descriptor m_lock_descriptor
Definition: table.h:3711
bool prepare_replace_filter(THD *thd)
Prepare replace filter for a view (used for REPLACE command)
Definition: table.cc:4691
bool can_push_condition_to_derived(THD *thd)
Check if we can push outer where condition to this derived table.
Definition: sql_derived.cc:1035
COND_EQUAL * cond_equal
Used with outer join.
Definition: table.h:3914
bool materializable_is_const(THD *thd) const
Checks if this is a table that contains zero rows or one row, and that can be materialized during opt...
Definition: table.cc:6505
bool setup_table_function(THD *thd)
Setup a table function to use materialization.
Definition: sql_derived.cc:951
bool is_aj_nest() const
Definition: table.h:2985
table_map sj_inner_tables
Definition: table.h:3537
LEX * view_query() const
Return the valid LEX object for a view.
Definition: table.h:3255
Table_ref * first_leaf_table()
Return first leaf table of a base table or a view/derived table.
Definition: table.h:3223
table_map m_map
Table map, derived from m_tableno.
Definition: table.h:3520
const Create_col_name_list * derived_column_names() const
Definition: table.h:3896
Table_ref * first_leaf_for_name_resolution()
Retrieve the first (left-most) leaf in a nested join tree with respect to name resolution.
Definition: table.cc:4829
const Create_col_name_list * m_derived_column_names
If the user has specified column names with the syntaxes "table name parenthesis column names": WITH ...
Definition: table.h:3623
Field_translator * field_translation
Array of selected expressions from a derived table or view.
Definition: table.h:3641
bool join_order_swapped
True if was originally the left argument of a RIGHT JOIN, before we made it the right argument of a L...
Definition: table.h:3723
Table_ref(TABLE *table_arg, const char *db_name_arg, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, const char *alias_arg, enum thr_lock_type lock_type_arg)
Creates a Table_ref object with pre-allocated strings for database, table and alias.
Definition: table.h:2812
bool is_multiple_tables() const
Return true if this is a view or derived table that is defined over more than one base table,...
Definition: table.h:3209
ulonglong m_table_ref_version
See comments for TABLE_SHARE::get_table_ref_version()
Definition: table.h:3933
Table_ref * outer_join_nest() const
Returns the outer join nest that this Table_ref belongs to, if any.
Definition: table.h:3393
void set_updatable()
Set table as updatable. (per default, a table is non-updatable)
Definition: table.h:3152
bool prepare_security(THD *thd)
Prepare security context for a view.
Definition: table.cc:4945
void set_deleted()
Set table and all referencing views as being deleted from.
Definition: table.h:3182
bool check_option_processed
true <=> VIEW CHECK OPTION condition is processed (also for prep. stmts)
Definition: table.h:3780
bool check_single_table(Table_ref **table_ref, table_map map)
Check which single table inside a view that matches a table map.
Definition: table.cc:4757
bool is_external() const
Is this table only available in an external storage engine?
Definition: table.cc:7310
void set_derived_query_expression(Query_expression *query_expr)
Set the query expression of a derived table or view.
Definition: table.h:3264
Query_block * schema_query_block
Definition: table.h:3627
ST_SCHEMA_TABLE * schema_table
Definition: table.h:3626
enum_table_ref_type m_table_ref_type
See comments for set_metadata_id()
Definition: table.h:3931
ulonglong updatable_view
VIEW can be updated.
Definition: table.h:3695
table_map map() const
Return table map derived from table number.
Definition: table.h:3887
Item * m_join_cond
If this table or join nest is the Y in "X [LEFT] JOIN Y ON C", this member points to C.
Definition: table.h:3527
bool cacheable_table
stop PS caching
Definition: table.h:3771
bool is_derived_unfinished_materialization() const
Definition: table.cc:7300
void set_derived_column_names(const Create_col_name_list *d)
Definition: table.h:3899
Table_ref * embedding
The nested join containing this table reference.
Definition: table.h:3767
bool is_placeholder() const
Definition: table.h:3101
bool schema_table_filled
Definition: table.h:3867
void set_updated()
Set table and all referencing views as being updated.
Definition: table.h:3164
void set_uses_materialization()
Set table to be materialized.
Definition: table.h:3141
Table_ref(const char *db_name, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, const char *alias_arg, enum thr_lock_type lock_type_arg, enum enum_mdl_type mdl_request_type)
Definition: table.h:2929
Field_translator * field_translation_end
pointer to element after last one in translation table above
Definition: table.h:3644
Security_context * find_view_security_context(THD *thd)
Find security context of current view.
Definition: table.cc:4914
Key_map merge_keys_saved
Definition: table.h:3942
bool setup_materialized_derived_tmp_table(THD *thd)
Sets up the tmp table to contain the derived table's rows.
Definition: sql_derived.cc:827
mem_root_deque< Table_ref * > * join_list
The join list immediately containing this table reference.
Definition: table.h:3769
bool is_mergeable() const
Return true if view or derived table and can be merged.
Definition: table.cc:6486
mem_root_deque< Table_ref * > * view_tables
Definition: table.h:3656
uint m_tableno
The members below must be kept aligned so that (1 << m_tableno) == m_map.
Definition: table.h:3519
void print(const THD *thd, String *str, enum_query_type query_type) const
Produce a textual identification of this object.
Definition: sql_lex.cc:2831
Table_ref * referencing_view
Definition: table.h:3663
void set_fulltext_searched()
Set table as full-text search (default is not fulltext searched)
Definition: table.h:3188
Table_ref * correspondent_table
Definition: table.h:3586
bool is_view() const
Return true if this represents a named view.
Definition: table.h:3054
List< Natural_join_column > * join_columns
Definition: table.h:3558
int view_check_option(THD *thd) const
Evaluate the check option of a view.
Definition: table.cc:4734
const char * get_db_name() const
Returns the name of the database that the referenced table belongs to.
Definition: table.h:3351
bool updating
True for tables and views being changed in a data change statement.
Definition: table.h:3748
bool m_insertable
True if VIEW/TABLE is insertable, based on analysis of query (SQL rules).
Definition: table.h:3732
void set_readonly()
Set table as readonly, ie it is neither updatable, insertable nor deletable during this statement.
Definition: table.h:3200
bool is_updated() const
Return true if table is being updated.
Definition: table.h:3161
bool m_updatable
True if VIEW/TABLE is updatable, based on analysis of query (SQL rules).
Definition: table.h:3730
void set_tableno(uint tableno)
Set table number.
Definition: table.h:3878
enum_view_algorithm effective_algorithm
The view algorithm that is actually used, if this is a view.
Definition: table.h:3710
bool is_inner_table_of_outer_join() const
Return true if this table is an inner table of some outer join.
Definition: table.h:3408
Table_ref * belong_to_view
Definition: table.h:3658
LEX * view
Definition: table.h:3637
bool set_insert_values(MEM_ROOT *mem_root)
Allocate a buffer for inserted column values.
Definition: table.cc:4778
MY_BITMAP read_set_internal_saved
Definition: table.h:3953
bool is_derived() const
Return true if this represents a derived table (an unnamed view)
Definition: table.h:3057
bool derived_keys_ready
true <=> all possible keys for a derived table were collected and could be re-used while statement re...
Definition: table.h:3923
const Table_ref * updatable_base_table() const
Return the base table entry of an updatable table.
Definition: table.h:3421
void restore_properties()
Restore persistent properties into TABLE from Table_ref.
Definition: table.cc:4462
Table_ref ** prev_global
Definition: table.h:3491
Query_block * query_block
Definition: table.h:3634
const Table_ref * top_table() const
Return the outermost view this table belongs to, or itself.
Definition: table.h:3035
void set_merged()
Set table to be merged.
Definition: table.h:3130
void set_insertable()
Set table as insertable-into. (per default, a table is not insertable)
Definition: table.h:3158
uint tableno() const
Return table number.
Definition: table.h:3884
size_t db_length
Definition: table.h:3725
List< Index_hint > * index_hints
Definition: table.h:3571
LEX_STRING select_stmt
text of (CREATE/SELECT) statement
Definition: table.h:3685
Table_ref(const char *db_name_arg, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, const char *alias_arg, enum thr_lock_type lock_type_arg)
Definition: table.h:2945
bool is_natural_join
Definition: table.h:3551
Query_expression * derived
This field is set to non-null for derived tables and views.
Definition: table.h:3609
MY_BITMAP lock_partitions_saved
Definition: table.h:3950
bool is_fulltext_searched() const
Returns true if a MATCH function references this table.
Definition: table.h:3191
Table_ref * natural_join
Definition: table.h:3545
bool outer_join
True if right argument of LEFT JOIN; false in other cases (i.e.
Definition: table.h:3720
Table_ref * parent_l
Definition: table.h:3665
bool is_table_function() const
Return true if this represents a table function.
Definition: table.h:3063
bool m_updated
True if table is target of UPDATE statement, or updated in IODKU stmt.
Definition: table.h:3734
bool optimized_away
true <=> this table is a const one and was optimized away.
Definition: table.h:3917
bool is_insertable() const
Return true if table is insertable-into.
Definition: table.h:3155
AccessPath * access_path_for_derived
If we've previously made an access path for “derived”, it is cached here.
Definition: table.h:3600
bool is_alias
true if an alias for this table was specified in the SQL.
Definition: table.h:3810
bool straight
Definition: table.h:3741
int fetch_number_of_rows(ha_rows fallback_estimate=PLACEHOLDER_TABLE_ROW_ESTIMATE)
Retrieve number of rows in the table.
Definition: table.cc:6551
void set_join_cond(Item *val)
Definition: table.h:2966
bool is_system_view
Definition: table.h:3846
uint8 trg_event_map
Indicates what triggers we need to pre-load for this Table_ref when opening an associated TABLE.
Definition: table.h:3866
Table_ref * last_leaf_for_name_resolution()
Retrieve the last (right-most) leaf in a nested join tree with respect to name resolution.
Definition: table.cc:4845
bool schema_table_reformed
Definition: table.h:3632
bool is_sj_or_aj_nest() const
Definition: table.h:2987
Key_map keys_in_use_for_query_saved
Definition: table.h:3943
MY_BITMAP write_set_saved
Definition: table.h:3952
List< String > * partition_names
Definition: table.h:3875
bool force_index_order_saved
Definition: table.h:3948
Query_expression * derived_query_expression() const
Return the query expression of a derived table or view.
Definition: table.h:3269
bool ignore_leaves
preload only non-leaf nodes (IS THIS USED???)
Definition: table.h:3750
Table_ref * next_leaf
Definition: table.h:3681
bool is_leaf_for_name_resolution() const
Test if this is a leaf with respect to name resolution.
Definition: table.cc:4806
Table_ref * next_local
Definition: table.h:3489
Table_ref * merge_underlying_list
Definition: table.h:3650
LEX_CSTRING target_tablespace_name
Definition: table.h:3497
dd::enum_table_type required_type
Definition: table.h:3784
static Table_ref * new_nested_join(MEM_ROOT *allocator, const char *alias, Table_ref *embedding, mem_root_deque< Table_ref * > *belongs_to, Query_block *select)
Create a Table_ref object representing a nested join.
Definition: table.cc:4334
bool m_was_scalar_subquery
If true, this table is a derived (materialized) table which was created from a scalar subquery,...
Definition: table.h:3820
bool is_recursive_reference() const
Definition: table.h:3072
GRANT_INFO grant
Definition: table.h:3714
Table_ref * top_table()
Definition: table.h:3039
bool is_table_ref_id_equal(TABLE_SHARE *s) const
Compare the version of metadata from the previous execution (if any) with values obtained from the cu...
Definition: table.h:3313
void set_sj_or_aj_nest()
Makes the next a semi/antijoin nest.
Definition: table.h:2989
void set_table_ref_id(enum_table_ref_type table_ref_type_arg, ulonglong table_ref_version_arg)
Definition: table.h:3328
bool is_internal() const
Definition: table.h:3091
bool prepare_view_security_context(THD *thd)
Load security context information for this view.
Definition: table.cc:4869
const Lock_descriptor & lock_descriptor() const
Definition: table.h:3509
bool nullable_saved
Definition: table.h:3946
NESTED_JOIN * nested_join
Is non-NULL if this table reference is a nested join, ie it represents the inner tables of an outer j...
Definition: table.h:3765
Table_ref(TABLE *table_arg, const char *alias_arg, enum_mdl_type mdl_type)
Sets an explicit enum_mdl_type value, without initializing m_lock_descriptor.
Definition: table.h:2857
const char * db
Definition: table.h:3492
Security_context * security_ctx
Definition: table.h:3670
bool is_inserted() const
Return true if table is being inserted into.
Definition: table.h:3170
Table_ref(const char *db_name, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, enum thr_lock_type lock_type_arg, enum enum_mdl_type mdl_request_type)
Definition: table.h:2884
bool materialize_derived(THD *thd)
Materialize derived table.
Definition: sql_derived.cc:1707
Security_context * view_sctx
Definition: table.h:3675
bool merge_where(THD *thd)
Merge WHERE condition of view or derived table into outer query.
Definition: table.cc:4498
ulonglong view_suid
view is suid (true by default)
Definition: table.h:3705
ulonglong algorithm
The declared algorithm, if this is a view.
Definition: table.h:3704
uint get_hidden_field_count_for_derived() const
Return the number of hidden fields added for the temporary table created for this derived table.
Definition: table.cc:7305
List< Derived_key > derived_key_list
Definition: table.h:3859
bool prepare_check_option(THD *thd, bool is_cascaded=false)
Prepare check option for a view.
Definition: table.cc:4632
void set_common_table_expr(Common_table_expr *c)
Definition: table.h:3894
Table_ref * next_global
Definition: table.h:3491
bool optimize_derived(THD *thd)
Optimize the query expression representing a derived table/view.
Definition: sql_derived.cc:1597
LEX_STRING timestamp
GMT time stamp of last operation.
Definition: table.h:3687
bool replace_filter_processed
true <=> Filter condition is processed
Definition: table.h:3782
Table_ref(const char *db_name, const char *table_name_arg, enum thr_lock_type lock_type_arg, enum enum_mdl_type mdl_request_type)
Definition: table.h:2869
bool generate_keys()
Generate keys for a materialized derived table/view.
Definition: table.cc:6932
enum_open_type open_type
Specifies which kind of table should be open for this element of table list.
Definition: table.h:3776
Item * m_join_cond_optim
Optimized copy of m_join_cond (valid for one single execution).
Definition: table.h:3911
table_map join_cond_dep_tables
The outer tables that an outer join's join condition depends on.
Definition: table.h:3757
Table_ref * updatable_base_table()
Definition: table.h:3431
Item * replace_filter
Filter for REPLACE command.
Definition: table.h:3684
bool merge_underlying_tables(Query_block *select)
Merge tables from a query block into a nested join structure.
Definition: table.cc:4370
Common_table_expr * common_table_expr() const
If non-NULL, the CTE which this table is derived from.
Definition: table.h:3893
bool internal_tmp_table
Definition: table.h:3808
LEX_STRING source
source of CREATE VIEW
Definition: table.h:3686
Table_ref(const char *db_name, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, enum thr_lock_type lock_type_arg)
Definition: table.h:2900
LEX_CSTRING view_connection_cl_name
Definition: table.h:3837
bool has_stored_program() const
Definition: table.cc:6500
LEX_CSTRING view_client_cs_name
Definition: table.h:3836
bool save_properties()
Save persistent properties from TABLE into Table_ref.
Definition: table.cc:4431
bool is_join_columns_complete
Definition: table.h:3560
bool m_is_recursive_reference
If a recursive reference inside the definition of a CTE.
Definition: table.h:3927
bool is_deleted() const
Return true if table is being deleted from.
Definition: table.h:3179
bool prelocking_placeholder
Definition: table.h:3790
LEX_USER definer
definer of view
Definition: table.h:3688
const char * table_name
Definition: table.h:3492
uint shared
Definition: table.h:3724
Item ** join_cond_optim_ref()
Definition: table.h:2980
bool create_field_translation(THD *thd)
Create field translation for merged derived table/view.
Definition: table.cc:4535
bool create_materialized_table(THD *thd)
Create result table for a materialized derived table/view.
Definition: sql_derived.cc:1645
uint query_block_id_for_explain() const
This is for showing in EXPLAIN.
Definition: table.cc:6299
Opt_hints_table * opt_hints_table
Table level optimizer hints for this table.
Definition: table.h:3501
bool setup_materialized_derived(THD *thd)
Setup a derived table to use materialization.
Definition: sql_derived.cc:815
Table_ref * any_outer_leaf_table()
Return any leaf table that is not an inner table of an outer join.
Definition: table.h:3234
View_creation_ctx * view_creation_ctx
Definition: table.h:3824
char * option
Definition: table.h:3498
Table_ref(const char *db_name, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, const char *alias_arg, enum enum_mdl_type mdl_request_type)
Sets an explicit enum_mdl_type value, without initializing m_lock_descriptor.
Definition: table.h:2915
TABLE * table
Definition: table.h:3572
void set_view_query(LEX *lex)
Set the LEX object of a view (will also define this as a view).
Definition: table.h:3252
void set_inserted()
Set table and all referencing views as being inserted into.
Definition: table.h:3173
bool update_derived_keys(THD *, Field *, Item **, uint, bool *)
Update derived table's list of possible keys.
Definition: table.cc:6872
uint query_block_id() const
If a derived table, returns query block id of first underlying query block.
Definition: table.cc:6294
bool m_fulltext_searched
True if fulltext searched.
Definition: table.h:3739
Item * join_cond() const
Definition: table.h:2965
Table_ref * next_name_resolution_table
Definition: table.h:3569
bool is_view_or_derived() const
Return true if this represents a named view or a derived table.
Definition: table.h:3060
bool is_merged() const
Return true if this is a derived table or view that is merged.
Definition: table.h:3127
void set_join_cond_optim(Item *cond)
Definition: table.h:2972
table_map dep_tables
The set of tables in the query block that this table depends on.
Definition: table.h:3755
size_t table_name_length
Definition: table.h:3726
bool uses_materialization() const
Return true if this is a materializable derived table/view.
Definition: table.h:3136
void add_join_natural(Table_ref *b)
Mark that there is a NATURAL JOIN or JOIN ... USING between two tables.
Definition: table.h:3466
bool is_sj_nest() const
Definition: table.h:2983
bool contain_auto_increment
Definition: table.h:3778
bool resolve_derived(THD *thd, bool apply_semijoin)
Resolve a derived table or view reference.
Definition: sql_derived.cc:267
Key_map covering_keys_saved
Definition: table.h:3941
uint leaf_tables_count() const
Return no. of base tables a merged view or derived table is defined over.
Definition: table.cc:6519
const char * alias
Definition: table.h:3492
Item * join_cond_optim() const
Definition: table.h:2971
bool set_recursive_reference()
Definition: table.cc:7293
Opt_hints_qb * opt_hints_qb
Definition: table.h:3503
bool is_dd_ctx_table
Definition: table.h:3854
Table_ref(TABLE *table_arg)
Only to be used by legacy code that temporarily needs a Table_ref, more specifically: Query_result_cr...
Definition: table.h:2800
bool is_fqtn
true if the table is referred to in the statement using a fully qualified name (<db_name>.
Definition: table.h:3814
bool force_index_saved
Definition: table.h:3947
Table_ref(const char *db_name, const char *table_name, enum thr_lock_type lock_type)
Constructor that can be used when the strings are null terminated.
Definition: table.h:2803
Item ** join_cond_ref()
Definition: table.h:2964
Key_map keys_in_use_for_order_by_saved
Definition: table.h:3945
Table_function * table_function
Definition: table.h:3591
bool m_deleted
True if table is target of DELETE statement, or deleted in REPLACE stmt.
Definition: table.h:3738
enum Table_ref::@180 OPEN_NORMAL
Indicates that if Table_ref object corresponds to the table/view which requires special handling.
MDL_request mdl_request
Definition: table.h:3869
Table_ref(const char *db_name, const char *table_name, const char *alias, enum thr_lock_type lock_type)
Constructor that can be used when the strings are null terminated.
Definition: table.h:2828
Item * check_option
WITH CHECK OPTION condition.
Definition: table.h:3683
Query_result_union * derived_result
Definition: table.h:3578
void set_table_ref_id(TABLE_SHARE *s)
Record the value of metadata version of the corresponding table definition cache element in this pars...
Definition: table.h:3324
void reset()
Reset table.
Definition: table.cc:4385
This class holds all information about triggers of a table.
Definition: table_trigger_dispatcher.h:63
Object containing parameters used when creating and using temporary tables.
Definition: temp_table_param.h:95
Used for storing information associated with generated column, default values generated from expressi...
Definition: field.h:483
View_creation_ctx – creation context of view objects.
Definition: table.h:267
static View_creation_ctx * create(THD *thd)
Definition: table.cc:223
View_creation_ctx(THD *thd)
Definition: table.h:274
Class representing the fact that some thread waits for table share to be flushed.
Definition: table.h:626
MDL_context * m_ctx
Definition: table.h:627
Wait_for_flush ** prev_in_share
Definition: table.h:648
Wait_for_flush * next_in_share
Pointers for participating in the list of waiters for table share.
Definition: table.h:647
TABLE_SHARE * m_share
Definition: table.h:628
MDL_context * get_ctx() const
Definition: table.h:638
uint m_deadlock_weight
Definition: table.h:629
bool accept_visitor(MDL_wait_for_graph_visitor *dvisitor) override
Traverse portion of wait-for graph which is reachable through edge represented by this flush ticket i...
Definition: table.cc:3864
Wait_for_flush(MDL_context *ctx_arg, TABLE_SHARE *share_arg, uint deadlock_weight_arg)
Definition: table.h:632
uint get_deadlock_weight() const override
Definition: table.cc:3868
enum_rule
Definition: foreign_key.h:54
The handler class is the interface for dynamically loadable storage engines.
Definition: handler.h:4412
@ NONE
Definition: handler.h:4498
Histogram base class.
Definition: histogram.h:312
std::unordered_map, but with my_malloc, so that you can track the memory used using PSI memory keys.
Definition: map_helpers.h:148
A (partial) implementation of std::deque allocating its blocks on a MEM_ROOT.
Definition: mem_root_deque.h:110
Definition: partition_info.h:209
A table definition from the master.
Definition: rpl_utility.h:248
static MEM_ROOT mem_root
Definition: client_plugin.cc:110
enum_query_type
Query type constants (usable as bitmap flags).
Definition: enum_query_type.h:31
Fido Client Authentication nullptr
Definition: fido_client_plugin.cc:222
This file contains the field type.
enum_field_types
Column types for MySQL.
Definition: field_types.h:53
void * memdup_root(MEM_ROOT *root, const void *str, size_t len)
Definition: my_alloc.cc:295
struct PSI_table_share PSI_table_share
Definition: psi_table_bits.h:100
static void free_share(st_blackhole_share *share)
Definition: ha_blackhole.cc:307
static int flag
Definition: hp_test1.cc:40
static uint keys
Definition: hp_test2.cc:46
enum_json_diff_operation
Enum that describes what kind of operation a Json_diff object represents.
Definition: json_diff.h:53
float rec_per_key_t
Data type for records per key estimates that are stored in the KEY::rec_per_key_float[] array.
Definition: key.h:96
enum_order
Definition: key_spec.h:65
@ ORDER_NOT_RELEVANT
Definition: key_spec.h:65
constexpr const LEX_CSTRING EMPTY_CSTR
Definition: lex_string.h:48
constexpr const LEX_CSTRING NULL_CSTR
Definition: lex_string.h:47
A better implementation of the UNIX ctype(3) library.
MYSQL_PLUGIN_IMPORT CHARSET_INFO * system_charset_info
Definition: mysqld.cc:1546
#define my_strcasecmp(s, a, b)
Definition: m_ctype.h:718
#define MDL_REQUEST_INIT(R, P1, P2, P3, P4, P5)
Definition: mdl.h:905
@ MDL_TRANSACTION
Locks with transaction duration are automatically released at the end of transaction.
Definition: mdl.h:343
This file follows Google coding style, except for the name MEM_ROOT (which is kept for historical rea...
This file includes constants used by all storage engines.
#define HA_VIRTUAL_GEN_KEY
Set if a key is on any virtual generated columns.
Definition: my_base.h:552
ulong key_part_map
Definition: my_base.h:1007
my_off_t ha_rows
Definition: my_base.h:1140
#define HA_POS_ERROR
Definition: my_base.h:1142
ha_storage_media
Definition: my_base.h:115
@ HA_SM_DEFAULT
Definition: my_base.h:116
uint32 my_bitmap_map
Definition: my_bitmap.h:41
Header for compiler-dependent features.
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
uint8_t uint8
Definition: my_inttypes.h:63
unsigned char uchar
Definition: my_inttypes.h:52
int64_t int64
Definition: my_inttypes.h:68
uint16_t uint16
Definition: my_inttypes.h:65
uint32_t uint32
Definition: my_inttypes.h:67
Common header for many mysys elements.
uint64_t table_map
Definition: my_table_map.h:30
#define NAME_CHAR_LEN
Field/table name length.
Definition: mysql_com.h:60
ABI for instrumented mutexes.
static char * path
Definition: mysqldump.cc:137
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1057
Definition: buf0block_hint.cc:30
const std::string charset("charset")
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:43
enum_table_type
Definition: abstract_table.h:53
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
Definition: column_statistics.h:34
Json_data_extension ext
Definition: backend.cc:51
const char * table_name
Definition: rules_table_service.cc:56
const char * db_name
Definition: rules_table_service.cc:55
std::map< Key, Value, Compare, ut::allocator< std::pair< const Key, Value > > > map
Specialization of map which uses ut_allocator.
Definition: ut0new.h:2893
Performance schema instrumentation interface.
required string key
Definition: replication_asynchronous_connection_failover.proto:60
required uint32 status
Definition: replication_asynchronous_connection_failover.proto:61
repeated Source source
Definition: replication_asynchronous_connection_failover.proto:42
Value_generator_source
Enum to indicate source for which value generator is used.
Definition: field.h:473
enum_stats_auto_recalc
Definition: handler.h:3036
row_type
Definition: handler.h:676
void free_blobs(TABLE *table)
Definition: table.cc:3334
LEX_CSTRING SLOW_LOG_NAME
Definition: table.cc:144
bool update_generated_write_fields(const MY_BITMAP *bitmap, TABLE *table)
Calculate data for each generated field marked for write in the corresponding column map.
Definition: table.cc:7229
I_P_List< Wait_for_flush, I_P_List_adapter< Wait_for_flush, &Wait_for_flush::next_in_share, &Wait_for_flush::prev_in_share > > Wait_for_flush_list
Definition: table.h:655
enum_open_type
Type of table which can be open for an element of table list.
Definition: table.h:2735
@ OT_TEMPORARY_OR_BASE
Definition: table.h:2736
@ OT_TEMPORARY_ONLY
Definition: table.h:2737
@ OT_BASE_ONLY
Definition: table.h:2738
static my_bitmap_map * tmp_use_all_columns(TABLE *table, MY_BITMAP *bitmap)
Definition: table.h:4080
int64 query_id_t
Definition: table.h:137
bool unpack_value_generator(THD *thd, TABLE *table, Value_generator **val_generator, Value_generator_source source, const char *source_name, Field *field, bool is_create_table, bool *error_reported)
Unpacks the definition of a value generator in all its forms: generated column, default expression or...
Definition: table.cc:2570
static void tmp_restore_column_map(MY_BITMAP *bitmap, my_bitmap_map *old)
Definition: table.h:4087
static void empty_record(TABLE *table)
Definition: table.h:2418
bool assert_invalid_stats_is_locked(const TABLE *)
Assert that caller holds lock on the table cache when TABLE::m_invalid_stats is accessed.
Definition: table.cc:8016
static my_bitmap_map * dbug_tmp_use_all_columns(TABLE *table, MY_BITMAP *bitmap)
Definition: table.h:4094
char * fn_rext(char *name)
Returns pointer to '.frm' extension of the file name.
Definition: table.cc:298
bool is_simple_order(ORDER *order)
Test if the order list consists of simple field expressions.
Definition: table.cc:7072
LEX_CSTRING MYSQL_SCHEMA_NAME
Definition: table.cc:135
enum enum_mdl_type mdl_type_for_dml(enum thr_lock_type lock_type)
Derive type of metadata lock to be requested for table used by a DML statement from the type of THR_L...
Definition: table.h:2724
bool create_key_part_field_with_prefix_length(TABLE *table, MEM_ROOT *root)
Create a copy of the key_info from TABLE_SHARE object to TABLE object.
Definition: table.cc:2792
bool is_user_table(TABLE *table)
return true if the table was created explicitly.
Definition: table.h:4284
bool assert_invalid_dict_is_locked(const TABLE *)
Assert that LOCK_thd_data is held when TABLE::m_invalid_dict is accessed.
Definition: table.cc:8003
void update_create_info_from_table(HA_CREATE_INFO *info, TABLE *form)
Definition: table.cc:3501
enum_view_algorithm
Strategy for how to process a view or derived table (merge or materialization)
Definition: table.h:2474
@ VIEW_ALGORITHM_TEMPTABLE
Definition: table.h:2476
@ VIEW_ALGORITHM_UNDEFINED
Definition: table.h:2475
@ VIEW_ALGORITHM_MERGE
Definition: table.h:2477
Mem_root_array_YY< LEX_CSTRING > Create_col_name_list
Definition: table.h:135
LEX_CSTRING MI_INFO_NAME
Definition: table.cc:150
bool is_infoschema_db(const char *name, size_t len)
Definition: table.h:4247
bool update_generated_read_fields(uchar *buf, TABLE *table, uint active_index=MAX_KEY)
Evaluate necessary virtual generated columns.
Definition: table.cc:7167
bool is_perfschema_db(const char *name, size_t len)
Definition: table.h:4257
Ident_name_check
Enumerate possible status of a identifier name while determining its validity.
Definition: table.h:187
Ident_name_check check_and_convert_db_name(LEX_STRING *db, bool preserve_lettercase)
Check if database name is valid, and convert to lower case if necessary.
Definition: table.cc:3629
LEX_CSTRING GENERAL_LOG_NAME
Definition: table.cc:141
const uchar * get_field_name(const uchar *arg, size_t *length)
LEX_CSTRING WORKER_INFO_NAME
Definition: table.cc:153
tmp_table_type
Definition: table.h:400
@ TRANSACTIONAL_TMP_TABLE
Definition: table.h:403
@ NON_TRANSACTIONAL_TMP_TABLE
Definition: table.h:402
@ INTERNAL_TMP_TABLE
Definition: table.h:404
@ NO_TMP_TABLE
Definition: table.h:401
@ SYSTEM_TMP_TABLE
Definition: table.h:405
int closefrm(TABLE *table, bool free_share)
Free information allocated by openfrm.
Definition: table.cc:3292
enum_table_category
Category of table found in the table share.
Definition: table.h:411
@ TABLE_CATEGORY_ACL_TABLE
A ACL metadata table.
Definition: table.h:579
@ TABLE_UNKNOWN_CATEGORY
Unknown value.
Definition: table.h:415
@ TABLE_CATEGORY_USER
User table.
Definition: table.h:450
@ TABLE_CATEGORY_RPL_INFO
Replication Information Tables.
Definition: table.h:547
@ TABLE_CATEGORY_INFORMATION
Information schema tables.
Definition: table.h:484
@ TABLE_CATEGORY_GTID
Gtid Table.
Definition: table.h:564
@ TABLE_CATEGORY_DICTIONARY
A data dictionary table.
Definition: table.h:572
@ TABLE_CATEGORY_PERFORMANCE
Performance schema tables.
Definition: table.h:528
@ TABLE_CATEGORY_LOG
Log tables.
Definition: table.h:506
@ TABLE_CATEGORY_SYSTEM
System table, maintained by the server.
Definition: table.h:462
@ TABLE_CATEGORY_TEMPORARY
Temporary table.
Definition: table.h:440
bool is_temporary_table(const Table_ref *tl)
Check if a Table_ref instance represents a pre-opened temporary table.
Definition: table.h:4310
enum_table_ref_type
Enumerate possible types of a table from re-execution standpoint.
Definition: table.h:174
@ TABLE_REF_VIEW
Definition: table.h:177
@ TABLE_REF_BASE_TABLE
Definition: table.h:178
@ TABLE_REF_I_S_TABLE
Definition: table.h:179
@ TABLE_REF_TMP_TABLE
Definition: table.h:180
@ TABLE_REF_NULL
Initial value set by the parser.
Definition: table.h:176
bool check_column_name(const Name_string &namestring)
Definition: table.cc:3695
#define STATUS_DELETED
Reserved for use by multi-table delete. Means the row has been deleted.
Definition: table.h:1388
TABLE_CATEGORY get_table_category(const LEX_CSTRING &db, const LEX_CSTRING &name)
Definition: table.cc:304
uint add_pk_parts_to_sk(KEY *sk, uint sk_n, KEY *pk, uint pk_n, TABLE_SHARE *share, handler *handler_file, uint *usable_parts, bool use_extended_sk)
Generate extended secondary keys by adding primary key parts to the existing secondary key.
Definition: table.cc:801
bool can_call_position(const TABLE *table)
Definition: table.h:4437
#define STATUS_UPDATED
Reserved for use by multi-table update. Means the row has been updated.
Definition: table.h:1381
#define tmp_file_prefix
Prefix for tmp tables.
Definition: table.h:154
Lex_acl_attrib_udyn
This is generic enum.
Definition: table.h:2545
static const uint MYSQL_SCHEMA_DD_ID
Definition: table.h:4236
Bitmap< MAX_FIELDS > Field_map
Definition: table.h:1394
index_hint_type
Definition: table.h:1391
@ INDEX_HINT_FORCE
Definition: table.h:1391
@ INDEX_HINT_IGNORE
Definition: table.h:1391
@ INDEX_HINT_USE
Definition: table.h:1391
int create_table_share_for_upgrade(THD *thd, const char *path, TABLE_SHARE *share, FRM_context *frm_context, const char *db, const char *table, bool is_fix_view_cols_and_deps)
Create TABLE_SHARE from .frm file.
Definition: table.cc:7910
void append_unescaped(String *res, const char *pos, size_t length)
Store an SQL quoted string.
Definition: table.cc:3464
Ident_name_check check_table_name(const char *name, size_t length)
Function to check if table name is valid or not.
Definition: table.cc:3668
char * get_field(MEM_ROOT *mem, Field *field)
Allocate string field in MEM_ROOT and return it as NULL-terminated string.
Definition: table.cc:3563
LEX_CSTRING MYSQL_TABLESPACE_NAME
Definition: table.cc:138
static const uint MYSQL_TABLESPACE_DD_ID
Definition: table.h:4240
#define STATUS_NOT_STARTED
Flags for TABLE::m_status (maximum 8 bits).
Definition: table.h:1373
void setup_key_part_field(TABLE_SHARE *share, handler *handler_file, uint primary_key_n, KEY *keyinfo, uint key_n, uint key_part_n, uint *usable_parts, bool part_of_key_not_extended)
Setup key-related fields of Field object for given key and key part.
Definition: table.cc:723
void init_tmp_table_share(THD *thd, TABLE_SHARE *share, const char *key, size_t key_length, const char *table_name, const char *path, MEM_ROOT *mem_root)
Initialize share for temporary tables.
Definition: table.cc:460
enum enum_table_category TABLE_CATEGORY
Definition: table.h:581
LEX_CSTRING INFORMATION_SCHEMA_NAME
Definition: table.cc:128
void init_mdl_requests(Table_ref *table_list)
Helper function which allows to allocate metadata lock request objects for all elements of table list...
Definition: table.cc:6474
struct Table_share_foreign_key_info TABLE_SHARE_FOREIGN_KEY_INFO
static void dbug_tmp_restore_column_maps(MY_BITMAP *read_set, MY_BITMAP *write_set, my_bitmap_map **old)
Definition: table.h:4130
void repoint_field_to_record(TABLE *table, uchar *old_rec, uchar *new_rec)
Repoint a table's fields from old_rec to new_rec.
Definition: table.cc:7087
#define PLACEHOLDER_TABLE_ROW_ESTIMATE
Definition: table.h:157
void free_blob_buffers_and_reset(TABLE *table, uint32 size)
Reclaims temporary blob storage which is bigger than a threshold.
Definition: table.cc:3355
bool unpack_partition_info(THD *thd, TABLE *outparam, TABLE_SHARE *share, handlerton *engine_type, bool is_create_table)
Unpack the partition expression.
Definition: table.cc:2700
#define STATUS_NOT_FOUND
Means we were searching for a row and didn't find it.
Definition: table.h:1379
int open_table_from_share(THD *thd, TABLE_SHARE *share, const char *alias, uint db_stat, uint prgflag, uint ha_open_flags, TABLE *outparam, bool is_create_table, const dd::Table *table_def_param)
Open a table based on a TABLE_SHARE.
Definition: table.cc:2869
LEX_CSTRING PERFORMANCE_SCHEMA_DB_NAME
Definition: table.cc:131
#define STATUS_NULL_ROW
Means that table->null_row is set.
Definition: table.h:1386
ulong refresh_version
Definition: mysqld.cc:1362
static void dbug_tmp_restore_column_map(MY_BITMAP *bitmap, my_bitmap_map *old)
Definition: table.h:4105
#define restore_record(A, B)
Definition: table.h:149
int set_zone(int nr, int min_zone, int max_zone)
Definition: table.cc:3446
Ident_name_check check_db_name(const char *name, size_t length)
Check if database name is valid.
Definition: table.cc:3593
int rename_file_ext(const char *from, const char *to, const char *ext)
Definition: table.cc:3520
TABLE_SHARE * alloc_table_share(const char *db, const char *table_name, const char *key, size_t key_length, bool open_secondary)
Allocate and setup a TABLE_SHARE structure.
Definition: table.cc:369
void free_table_share(TABLE_SHARE *share)
Free table share and memory used by it.
Definition: table.cc:592
bool belongs_to_p_s(Table_ref *tl)
Check if the table belongs to the P_S, excluding setup and threads tables.
Definition: table.h:4275
bool assert_ref_count_is_locked(const TABLE_SHARE *)
Assert that the LOCK_open mutex is held when the reference count of a TABLE_SHARE is accessed.
Definition: table.cc:512
#define tmp_file_prefix_length
Definition: table.h:155
LEX_CSTRING RLI_INFO_NAME
Definition: table.cc:147
struct Table_share_foreign_key_parent_info TABLE_SHARE_FOREIGN_KEY_PARENT_INFO
File containing constants that can be used throughout the server.
constexpr const unsigned int MAX_KEY
Definition: sql_const.h:45
constexpr const size_t MAX_TABLES
Max tables in join.
Definition: sql_const.h:107
enum_mark_columns
Definition: sql_const.h:229
enum_mdl_type
Type of metadata lock request.
Definition: sql_lexer_yacc_state.h:106
@ MDL_SHARED_WRITE
Definition: sql_lexer_yacc_state.h:179
@ MDL_SHARED_WRITE_LOW_PRIO
Definition: sql_lexer_yacc_state.h:185
@ MDL_SHARED_READ
Definition: sql_lexer_yacc_state.h:169
int plan_idx
This represents the index of a JOIN_TAB/QEP_TAB in an array.
Definition: sql_opt_exec_shared.h:54
static MEM_ROOT mem
Definition: sql_servers.cc:99
case opt name
Definition: sslopt-case.h:33
Access paths are a query planning structure that correspond 1:1 to iterators, in that an access path ...
Definition: access_path.h:193
Definition: m_ctype.h:385
Struct that describes an expression selected from a derived table or view.
Definition: table.h:2500
Item * item
Points to an item that represents the expression.
Definition: table.h:2505
const char * name
Name of selected expression.
Definition: table.h:2507
The current state of the privilege checking process for the current user, SQL statement and SQL objec...
Definition: table.h:359
GRANT_INTERNAL_INFO m_internal
The grant state for internal tables.
Definition: table.h:397
GRANT_INFO()
Definition: table.cc:274
Access_bitmask privilege
The set of privileges that the current user has fulfilled for a certain host, database,...
Definition: table.h:395
GRANT_TABLE * grant_table
A copy of the privilege information regarding the current host, database, object and user.
Definition: table.h:367
uint version
Used for cache invalidation when caching privilege information.
Definition: table.h:383
State information for internal tables grants.
Definition: table.h:336
bool m_table_lookup_done
True if the internal lookup by table name was done.
Definition: table.h:342
const ACL_internal_table_access * m_table_access
Cached internal table access.
Definition: table.h:344
bool m_schema_lookup_done
True if the internal lookup by schema name was done.
Definition: table.h:338
const ACL_internal_schema_access * m_schema_access
Cached internal schema access.
Definition: table.h:340
Struct to hold information about the table that should be created.
Definition: handler.h:3045
Hook class which via its methods specifies which members of T should be used for participating in a i...
Definition: sql_plist.h:198
Definition of name for generated keys, owned by TABLE_SHARE.
Definition: table.h:682
char name[NAME_CHAR_LEN]
Definition: table.h:683
bool use_default_password_lifetime
Definition: table.h:2618
bool update_password_expired_column
Definition: table.h:2617
bool update_failed_login_attempts
Definition: table.h:2629
uint32 password_reuse_interval
Definition: table.h:2625
bool use_default_password_reuse_interval
Definition: table.h:2626
Lex_acl_attrib_udyn update_password_require_current
Definition: table.h:2633
uint failed_login_attempts
Definition: table.h:2628
bool update_password_reuse_interval
Definition: table.h:2627
bool update_password_history
Definition: table.h:2624
int password_lock_time
Definition: table.h:2630
bool update_account_locked_column
Definition: table.h:2620
bool update_password_expired_fields
Definition: table.h:2616
bool use_default_password_history
Definition: table.h:2623
bool update_password_lock_time
Definition: table.h:2631
bool account_locked
Definition: table.h:2621
void cleanup()
Definition: table.h:2634
uint16 expire_after_days
Definition: table.h:2619
uint32 password_history_length
Definition: table.h:2622
bool modify_factor
Definition: table.h:2573
LEX_CSTRING generated_password
Definition: table.h:2555
LEX_CSTRING auth
Definition: table.h:2554
bool uses_identified_with_clause
Definition: table.h:2566
bool uses_authentication_string_clause
Definition: table.h:2565
bool finish_registration
Definition: table.h:2586
LEX_CSTRING plugin
Definition: table.h:2553
void copy(LEX_MFA *m, MEM_ROOT *alloc)
Definition: table.cc:7322
bool uses_identified_by_clause
Definition: table.h:2564
bool drop_factor
Definition: table.h:2575
bool init_registration
Definition: table.h:2584
uint nth_factor
Definition: table.h:2557
bool requires_registration
Definition: table.h:2580
LEX_CSTRING challenge_response
Definition: table.h:2556
bool add_factor
Definition: table.h:2571
bool has_password_generator
Definition: table.h:2567
LEX_MFA()
Definition: table.h:2588
bool unregister
Definition: table.h:2582
void reset()
Definition: table.h:2589
bool passwordless
Definition: table.h:2569
bool retain_current_password
Definition: table.h:2664
LEX_ALTER alter_status
Definition: table.h:2666
List< LEX_MFA > mfa_list
Definition: table.h:2669
bool uses_replace_clause
Definition: table.h:2663
LEX_CSTRING host
Definition: table.h:2661
static LEX_USER * alloc(THD *thd)
Definition: table.cc:7358
void init()
Definition: table.h:2672
LEX_CSTRING current_auth
Definition: table.h:2662
bool with_initial_auth
Definition: table.h:2670
LEX_CSTRING user
Definition: table.h:2660
LEX_MFA first_factor_auth_info
Definition: table.h:2668
LEX_USER()
Definition: table.h:2699
bool discard_old_password
Definition: table.h:2665
bool add_mfa_identifications(LEX_MFA *factor2, LEX_MFA *factor3=nullptr)
Definition: table.cc:7365
The LEX object currently serves three different purposes:
Definition: sql_lex.h:3725
Definition: thr_lock.h:99
thr_lock_type type
Definition: thr_lock.h:100
@ TABLE
Definition: mdl.h:405
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
void ClearForReuse()
Similar to Clear(), but anticipates that the block will be reused for further allocations.
Definition: my_alloc.cc:189
Definition: mysql_lex_string.h:40
const char * str
Definition: mysql_lex_string.h:41
size_t length
Definition: mysql_lex_string.h:42
Definition: mysql_lex_string.h:35
Definition: my_bitmap.h:43
my_bitmap_map * bitmap
Definition: my_bitmap.h:44
Struct NESTED_JOIN is used to represent how tables are connected through outer join operations and se...
Definition: nested_join.h:78
uint32 locked
Definition: table.h:4077
char * table
Definition: table.h:4076
OPEN_TABLE_LIST * next
Definition: table.h:4075
uint32 in_use
Definition: table.h:4077
char * db
Definition: table.h:4076
char * buff
Definition: table.h:325
bool is_item_original() const
Definition: table.h:285
Item_rollup_group_item * rollup_item
Definition: table.h:303
bool in_field_list
Definition: table.h:307
Item * item_initial
The initial ordering expression.
Definition: table.h:293
ORDER * next
Definition: table.h:287
enum_order direction
Definition: table.h:305
Item ** item
Points at the item in the select fields.
Definition: table.h:301
bool used_alias
Tells whether this ORDER element was referenced with an alias or with an expression,...
Definition: table.h:314
table_map depend_map
Definition: table.h:326
Field * field_in_tmp_table
When GROUP BY is implemented with a temporary table (i.e.
Definition: table.h:324
table_map used
Definition: table.h:326
bool is_explicit
Definition: table.h:327
A struct that contains execution time state used for partial update of JSON columns.
Definition: table.cc:7413
int value
Definition: table.h:2445
const char * field_name
This is used as column name.
Definition: table.h:2431
enum_field_types field_type
This denotes data type for the column.
Definition: table.h:2444
const char * old_name
Definition: table.h:2455
uint open_method
Definition: table.h:2456
uint field_flags
This is used to set column attributes.
Definition: table.h:2454
uint field_length
For string-type columns, this is the maximum number of characters.
Definition: table.h:2438
int(* process_table)(THD *thd, Table_ref *tables, TABLE *table, bool res, LEX_CSTRING db_name, LEX_CSTRING table_name)
Definition: table.h:2466
int(* fill_table)(THD *thd, Table_ref *tables, Item *cond)
Definition: table.h:2463
ST_FIELD_INFO * fields_info
Definition: table.h:2461
int(* old_format)(THD *thd, ST_SCHEMA_TABLE *schema_table)
Definition: table.h:2465
bool hidden
Definition: table.h:2468
const char * table_name
Definition: table.h:2460
const TABLE_FIELD_TYPE * field
Definition: table.h:593
uint count
Definition: table.h:592
LEX_CSTRING cset
Definition: table.h:588
LEX_CSTRING name
Definition: table.h:586
LEX_CSTRING type
Definition: table.h:587
This structure is shared between different table objects.
Definition: table.h:691
ulong stored_rec_length
Definition: table.h:798
uint next_number_index
Definition: table.h:913
Key_map keys_in_use
The set of indexes that are not disabled for this table.
Definition: table.h:789
TABLE_SHARE_FOREIGN_KEY_PARENT_INFO * foreign_key_parent
Definition: table.h:1032
bool visit_subgraph(Wait_for_flush *waiting_ticket, MDL_wait_for_graph_visitor *gvisitor)
Traverse portion of wait-for graph which is reachable through this table share in search for deadlock...
Definition: table.cc:3882
Table_cache_element ** cache_element
Array of table_cache_instances pointers to elements of table caches respresenting this table in each ...
Definition: table.h:742
MEM_ROOT mem_root
Definition: table.h:723
bool is_primary_engine() const
Does this TABLE_SHARE represent a table in a primary storage engine?
Definition: table.h:1239
void destroy()
Release resources and free memory occupied by the table share.
Definition: table.cc:534
TABLE_SHARE_FOREIGN_KEY_INFO * foreign_key
Definition: table.h:1030
bool is_secondary_engine() const
Does this TABLE_SHARE represent a table in a secondary storage engine?
Definition: table.h:1242
uint stats_sample_pages
Definition: table.h:835
handlerton * db_type() const
Definition: table.h:803
LEX_STRING comment
Definition: table.h:751
Handler_share * ha_share
Main handler's share.
Definition: table.h:995
MEM_ROOT * alloc_for_tmp_file_handler
Used to allocate new handler for internal temporary table when the size limitation of the primary sto...
Definition: table.h:728
enum_stats_auto_recalc stats_auto_recalc
Definition: table.h:838
const char * tablespace
Definition: table.h:945
partition_info * m_part_info
Partition meta data.
Definition: table.h:965
LEX_STRING compress
Definition: table.h:752
malloc_unordered_map< uint, const histograms::Histogram * > * m_histograms
Definition: table.h:707
const TABLE_FIELD_DEF * table_field_def_cache
Cache the checked structure of this table.
Definition: table.h:992
uint column_bitmap_size
Definition: table.h:917
ulong mysql_version
Definition: table.h:796
uint max_tmp_key_parts
For materialized derived tables: allocated size of base_key_parts array of all TABLE objects.
Definition: table.h:874
uint total_key_length
Definition: table.h:850
TYPELIB keynames
Definition: table.h:730
uchar * default_values
Definition: table.h:750
LEX_STRING encrypt_type
Definition: table.h:753
Table_id table_map_id
Definition: table.h:927
PSI_table_share * m_psi
Instrumentation for this table share.
Definition: table.h:998
bool is_missing_primary_key() const
Determine if the table is missing a PRIMARY KEY.
Definition: table.h:1186
bool db_low_byte_first
Definition: table.h:923
Schema_read_only
Schema's read only mode - ON (true) or OFF (false).
Definition: table.h:1045
LEX_CSTRING table_cache_key
Definition: table.h:774
unsigned int m_ref_count
How many TABLE objects use this TABLE_SHARE.
Definition: table.h:1257
unsigned long version() const
Returns the version of this TABLE_SHARE.
Definition: table.h:1096
uint max_unique_length
Definition: table.h:849
tmp_table_type tmp_table
Definition: table.h:817
unsigned long m_version
TABLE_SHARE version, if changed the TABLE_SHARE must be reopened.
Definition: table.h:1264
uint find_first_unused_tmp_key(const Key_map &k)
For a materialized derived table: informs the share that certain not-yet-used keys are going to be us...
Definition: table.cc:6018
int cached_row_logging_check
Definition: table.h:935
ulong reclength
Definition: table.h:797
uint varchar_fields
Definition: table.h:860
uint next_number_keypart
Definition: table.h:915
bool secondary_load
Secondary engine load status.
Definition: table.h:758
uint tmp_handler_count
Only for internal temporary tables.
Definition: table.h:824
Field ** field
Definition: table.h:745
ulong avg_row_length
Definition: table.h:795
plugin_ref db_plugin
Definition: table.h:802
LEX_CSTRING table_name
Definition: table.h:776
const dd::View * view_object
View object holding view definition read from DD.
Definition: table.h:1010
uint db_create_options
Bitmap with flags representing some of table options/attributes.
Definition: table.h:900
uint rec_buff_length
Definition: table.h:843
uint blob_fields
Definition: table.h:859
uint max_tmp_keys
For materialized derived tables: allocated size of key_info array.
Definition: table.h:869
LEX_STRING connect_string
Definition: table.h:779
Field ** found_next_number_field
Definition: table.h:746
ha_rows min_rows
Definition: table.h:794
bool is_referenced_by_foreign_key() const
Returns whether this table is referenced by a foreign key.
Definition: table.h:1253
uint foreign_keys
Arrays with descriptions of foreign keys in which this table participates as child or parent.
Definition: table.h:1029
Schema_read_only schema_read_only
Definition: table.h:1046
bool wait_for_old_version(THD *thd, struct timespec *abstime, uint deadlock_weight)
Wait until the subject share is removed from the table definition cache and make sure it's destroyed.
Definition: table.cc:3986
uint fields
Definition: table.h:842
uint tmp_open_count
Only for internal temporary tables.
Definition: table.h:830
Key_name * key_names
Array of names for generated keys, used for materialized derived tables.
Definition: table.h:879
Key_map keys_for_keyread
Definition: table.h:793
char * partition_info_str
Storing the full partitioning clause (PARTITION BY ...) which is used when creating new partition_inf...
Definition: table.h:979
TABLE_SHARE(unsigned long version, bool secondary)
Create a new TABLE_SHARE with the given version number.
Definition: table.h:700
uint null_bytes
Definition: table.h:841
bool system
Definition: table.h:922
bool is_view
Definition: table.h:925
ulonglong get_table_ref_version() const
Return a table metadata version.
Definition: table.cc:4059
uint rowid_field_offset
Definition: table.h:910
uint max_key_length
Definition: table.h:848
ulong * base_rec_per_key
Records per key array, used for materialized derived tables.
Definition: table.h:885
bool has_secondary_engine() const
Does this TABLE_SHARE represent a primary table that has a shadow copy in a secondary storage engine?
Definition: table.h:1248
bool is_distinct
Whether this is a temporary table that already has a UNIQUE index (removing duplicate rows on insert)...
Definition: table.h:856
dd::Table * tmp_table_def
Data-dictionary object describing explicit temporary table represented by this share.
Definition: table.h:1018
TABLE_SHARE * next
Definition: table.h:733
LEX_STRING path
Definition: table.h:777
bool m_open_in_progress
Definition: table.h:926
uint next_number_key_offset
Definition: table.h:914
uint keys
Definition: table.h:844
Key_map visible_indexes
The set of visible and enabled indexes for this table.
Definition: table.h:792
uint foreign_key_parents
Definition: table.h:1031
bool has_old_version() const
Is this table share being expelled from the table definition cache?
Definition: table.h:1106
mysql_mutex_t LOCK_ha_data
Definition: table.h:732
Wait_for_flush_list m_flush_tickets
List of tickets representing threads waiting for the share to be flushed.
Definition: table.h:1003
void clear_version()
Set the version of this TABLE_SHARE to zero.
Definition: table.cc:523
uint gen_def_field_count
Number of fields having the default value generated.
Definition: table.h:921
MY_BITMAP all_set
Definition: table.h:763
unsigned int ref_count() const
How many TABLE objects use this TABLE_SHARE.
Definition: table.h:1212
uint last_null_bit_pos
Definition: table.h:841
TABLE_CATEGORY table_category
Category of this table.
Definition: table.h:721
bool error
Definition: table.h:916
unsigned int decrement_ref_count()
Decrement the reference count by one.
Definition: table.h:1231
const CHARSET_INFO * table_charset
Definition: table.h:760
const histograms::Histogram * find_histogram(uint field_index) const
Find the histogram for the given field index.
Definition: table.cc:3945
unsigned int increment_ref_count()
Increment the reference count by one.
Definition: table.h:1221
bool auto_partitioned
Filled in when reading from frm.
Definition: table.h:972
void set_table_cache_key(char *key_buff, const char *key, size_t key_length)
Set share's table cache key and update its db and table name appropriately.
Definition: table.h:1088
void set_table_cache_key(char *key_buff, size_t key_length)
Set share's table cache key and update its db and table name appropriately.
Definition: table.h:1062
ulonglong autoextend_size
Definition: table.h:800
uint primary_key
Definition: table.h:912
ha_storage_media default_storage_media
Definition: table.h:942
rec_per_key_t * base_rec_per_key_float
Records per key array, float rep., used for materialized derived tables.
Definition: table.h:891
bool m_secondary_engine
Does this TABLE_SHARE represent a table in a secondary storage engine?
Definition: table.h:1268
std::uint32_t key_block_size
Definition: table.h:834
bool crashed
Definition: table.h:924
Key_map usable_indexes(const THD *thd) const
The set of indexes that the optimizer may use when creating an execution plan.
Definition: table.cc:497
LEX_CSTRING normalized_path
Definition: table.h:778
uint key_parts
Definition: table.h:845
uint vfields
Number of generated fields.
Definition: table.h:919
enum enum_table_ref_type get_table_ref_type() const
Convert unrelated members of TABLE_SHARE to one enum representing its type.
Definition: table.h:1114
uint db_options_in_use
Bitmap with flags representing some of table options/attributes which are in use by storage engine.
Definition: table.h:909
ha_rows max_rows
Definition: table.h:794
ulonglong get_table_def_version() const
Definition: table.h:1093
TYPELIB * intervals
Definition: table.h:731
uint first_unused_tmp_key
For materialized derived tables;.
Definition: table.h:865
TABLE_SHARE ** prev
Definition: table.h:733
uint null_fields
Definition: table.h:858
LEX_CSTRING secondary_engine
Secondary storage engine.
Definition: table.h:756
KEY * key_info
Definition: table.h:747
uint partition_info_str_len
Definition: table.h:980
LEX_CSTRING db
Definition: table.h:775
LEX_CSTRING engine_attribute
Definition: table.h:781
LEX_CSTRING secondary_engine_attribute
Definition: table.h:782
uint * blob_field
Definition: table.h:748
enum row_type real_row_type
Real row format used for the table by the storage engine.
Definition: table.h:816
Sql_check_constraint_share_list * check_constraint_share_list
Definition: table.h:1035
Query_block * owner_of_possible_tmp_keys
For materialized derived tables;.
Definition: table.h:1021
void mark_columns_used_by_index(uint index)
Definition: table.cc:5472
bool materialized
For a materializable derived or SJ table: true if has been materialized.
Definition: table.h:1830
void mark_generated_columns(bool is_update)
Update the write/read_set for generated columns when doing update and insert operation.
Definition: table.cc:6204
class QEP_TAB * qep_tab
Definition: table.h:1834
bool m_invalid_dict
This TABLE object is invalid and cannot be reused.
Definition: table.h:1810
bool m_except
True if we have EXCEPT, else we have INTERSECT.
Definition: table.h:1539
query_id_t query_id
Definition: table.h:1682
bool force_index_order
Flag set when the statement contains FORCE INDEX FOR ORDER BY See Table_ref::process_index_hints().
Definition: table.h:1744
void column_bitmaps_set_no_signal(MY_BITMAP *read_set_arg, MY_BITMAP *write_set_arg)
Definition: table.h:1908
void mark_columns_needed_for_update(THD *thd, bool mark_binlog_columns)
Mark columns needed for doing an update of a row.
Definition: table.cc:5640
const char * alias
alias or table name
Definition: table.h:1583
partition_info * part_info
Definition: table.h:1869
uint8 m_status
Definition: table.h:1722
bool key_read
If set, the optimizer has found that row retrieval should access index tree only.
Definition: table.h:1759
bool no_replicate
If set, indicate that the table is not replicated by the server.
Definition: table.h:1768
class JOIN_TAB * join_tab
Definition: table.h:1833
void set_no_row()
Set status for row buffer: contains no row.
Definition: table.h:2041
void mark_columns_needed_for_insert(THD *thd)
Definition: table.cc:6148
Field ** vfield
Pointer to generated columns.
Definition: table.h:1499
void clear_column_bitmaps(void)
Definition: table.cc:5372
uint tmp_table_seq_id
Internal tmp table sequential number.
Definition: table.h:1883
TABLE ** cache_prev
Definition: table.h:1413
Key_map covering_keys
Definition: table.h:1455
uchar * null_flags
Pointer to the null flags of record[0].
Definition: table.h:1584
Key_map keys_in_use_for_group_by
Definition: table.h:1486
Key_map keys_in_use_for_query
Definition: table.h:1484
Field_longlong * set_counter()
Definition: table.h:1570
void set_storage_handler(handler *file_arg)
Set storage handler for temporary table.
Definition: table.h:1971
bool has_null_row() const
Definition: table.h:2094
Record_buffer m_record_buffer
Buffer for use in multi-row reads. Initially empty.
Definition: table.h:1449
void set_deleted()
Set the contents of table to be "deleted", ie "not created", after having deleted the contents.
Definition: table.h:1991
void set_created()
Set the table as "created", and enable flags in storage engine that could not be enabled without an i...
Definition: table.cc:6135
void use_all_columns()
Definition: table.h:1913
bool has_updated_row() const
Definition: table.h:2097
TABLE * cache_next
Links for the lists of used/unused TABLE objects for the particular table in the specific instance of...
Definition: table.h:1413
void blobs_need_not_keep_old_value()
Virtual fields of type BLOB have a flag m_keep_old_value.
Definition: table.cc:7933
Table_ref * pos_in_table_list
Definition: table.h:1579
ORDER * group
Definition: table.h:1582
bool has_binary_diff_columns() const
Does this table have any columns that can be updated using partial update in the current row?
Definition: table.cc:7532
void mark_columns_per_binlog_row_image(THD *thd)
Definition: table.cc:5712
ha_rows quick_condition_rows
Definition: table.h:1704
THD * in_use
The current session using this table object.
Definition: table.h:1438
void disable_logical_diffs_for_current_row(const Field *field) const
Temporarily disable collection of Json_diff objects describing the logical changes of a JSON column i...
Definition: table.cc:7769
MY_BITMAP * fields_set_during_insert
A pointer to the bitmap of table fields (columns), which are explicitly set in the INSERT INTO statem...
Definition: table.h:1662
void mark_columns_needed_for_delete(THD *thd)
Definition: table.cc:5563
void set_distinct(bool distinct)
Definition: table.h:1568
ha_rows quick_rows[MAX_KEY]
Definition: table.h:1688
struct TABLE::@179 reginfo
thr_lock_type lock_type
Definition: table.h:1835
bool null_row
Definition: table.h:1729
uint lock_data_start
Definition: table.h:1707
bool const_table
Definition: table.h:1751
MY_BITMAP read_set_internal
A bitmap of fields that are explicitly referenced by the query.
Definition: table.h:1649
bool is_marked_for_partial_update(const Field *field) const
Has this column been marked for partial update?
Definition: table.cc:7526
bool force_index_group
Flag set when the statement contains FORCE INDEX FOR GROUP BY See Table_ref::process_index_hints().
Definition: table.h:1750
bool has_storage_handler() const
Definition: table.h:1968
bool open_by_handler
Definition: table.h:1770
void bind_value_generators_to_fields()
Bind all the table's value generator columns in all the forms: stored/virtual GC, default expressions...
Definition: table.cc:4251
Table_ref * pos_in_locked_tables
Definition: table.h:1581
void disable_binary_diffs_for_current_row(const Field *field)
Temporarily disable collection of binary diffs for a column in the current row.
Definition: table.cc:7514
void set_keyread(bool flag)
Definition: table.cc:6124
bool index_contains_some_virtual_gcol(uint index_no) const
Check whether the given index has a virtual generated columns.
Definition: table.h:1955
uint db_stat
Definition: table.h:1709
bool is_logical_diff_enabled(const Field *field) const
Is partial update using logical diffs enabled on this JSON column?
Definition: table.cc:7747
bool has_invalid_dict() const
Definition: table.h:1926
bool has_invalid_stats()
Definition: table.h:1931
uchar * insert_values
Definition: table.h:1446
ptrdiff_t default_values_offset() const
Definition: table.h:1963
uchar * record[2]
Definition: table.h:1443
void invalidate_dict()
Definition: table.cc:7979
void mark_auto_increment_column(void)
Mark auto-increment fields as used fields in both read and write maps.
Definition: table.cc:5532
bool alias_name_used
Definition: table.h:1788
bool fill_item_list(mem_root_deque< Item * > *item_list) const
Create Item_field for each column in the table.
Definition: table.cc:4308
bool impossible_range
Definition: table.h:1841
bool is_binary_diff_enabled(const Field *field) const
Is partial update using binary diffs enabled on this JSON column?
Definition: table.cc:7741
void invalidate_stats()
Definition: table.cc:7990
Cost_model_table m_cost_model
Cost model object for operations on this table.
Definition: table.h:1876
bool should_binlog_drop_if_temp_flag
This flag decides whether or not we should log the drop temporary table command.
Definition: table.h:2203
void cleanup_value_generator_items()
Clean any state in items associated with generated columns to be ready for the next statement.
Definition: table.cc:4277
Field_longlong * m_set_counter
The set counter.
Definition: table.h:1535
void init_cost_model(const Cost_model_server *cost_model_server)
Initialize the optimizer cost model.
Definition: table.h:2128
bool not_exists_optimize
Definition: table.h:1836
bool force_index
Definition: table.h:1738
void init(THD *thd, Table_ref *tl)
Initialize TABLE instance (newly created, or coming either from table cache or THD::temporary_tables ...
Definition: table.cc:4086
bool is_except() const
Definition: table.h:1554
MY_BITMAP * read_set
The read set contains the set of columns that the execution engine needs to process the query.
Definition: table.h:1631
bool should_binlog_drop_if_temp(void) const
Definition: table.cc:7948
bool get_fields_in_item_tree
Definition: table.h:1789
uint visible_field_count() const
Definition: table.h:1938
const Binary_diff_vector * get_binary_diffs(const Field *field) const
Get the list of binary diffs that have been collected for a given column in the current row,...
Definition: table.cc:7625
void mark_check_constraint_columns(bool is_update)
Update the read_map with columns needed for check constraint evaluation when doing update and insert ...
Definition: table.cc:6264
int current_lock
Definition: table.h:1710
void move_tmp_key(int old_idx, bool modify_share)
For a materialized derived table: moves a KEY definition from a position to the first not-yet-used po...
Definition: table.cc:6041
uint quick_n_ranges[MAX_KEY]
Definition: table.h:1694
TABLE * next
Definition: table.h:1403
bool add_binary_diff(const Field *field, size_t offset, size_t length)
Add a binary diff for a column that is updated using partial update.
Definition: table.cc:7630
bool m_invalid_stats
This TABLE object is invalid and cannot be reused as it has outdated rec_per_key and handler stats.
Definition: table.h:1819
bool empty_result_table()
Empties internal temporary table (deletes rows, closes scan)
Definition: table.cc:7952
void cleanup_partial_update()
Clean up state used for partial update of JSON columns.
Definition: table.cc:7595
uint lock_position
Definition: table.h:1706
Key_map quick_keys
Definition: table.h:1456
void restore_null_flags()
Restore the NULL flags of the current row from the designated buffer.
Definition: table.h:2114
Table_trigger_dispatcher * triggers
Definition: table.h:1578
bool no_keyread
Certain statements which need the full row, set this to ban index-only access.
Definition: table.h:1764
bool is_intersect() const
Definition: table.h:1553
void set_tmp_table_seq_id(uint arg)
Definition: table.h:2157
Partial_update_info * m_partial_update_info
Object which contains execution time state used for partial update of JSON columns.
Definition: table.h:2197
void set_binlog_drop_if_temp(bool should_binlog)
Set the variable should_binlog_drop_if_temp_flag, so that the logging of temporary tables can be deci...
Definition: table.cc:7944
void mark_gcol_in_maps(const Field *field)
Adds a generated column and its dependencies to the read_set/write_set bitmaps.
Definition: table.cc:7249
void set_deleted_row()
Set "deleted" property for the current row.
Definition: table.h:2085
void reset_null_row()
Clear "null row" status for the current row.
Definition: table.h:2073
Field ** gen_def_fields_ptr
Pointer to fields having the default value generated.
Definition: table.h:1501
MY_BITMAP fields_for_functional_indexes
A bitmap marking the hidden generated columns that exists for functional indexes.
Definition: table.h:1426
void set_not_started()
Life cycle of the row buffer is as follows:
Definition: table.h:2021
SortingIterator * sorting_iterator
Not owned by the TABLE; used only from filesort_free_buffers().
Definition: table.h:1861
bool m_last_operation_is_distinct
If m_set_counter is set: true if last block has DISTINCT semantics, either because it is marked as su...
Definition: table.h:1546
key_part_map const_key_parts[MAX_KEY]
Definition: table.h:1691
Field ** field
Definition: table.h:1439
bool alloc_tmp_keys(uint new_key_count, uint new_key_part_count, bool modify_share)
Allocate space for keys, for a materialized derived table.
Definition: table.cc:5794
MEM_ROOT mem_root
Definition: table.h:1849
void column_bitmaps_set(MY_BITMAP *read_set_arg, MY_BITMAP *write_set_arg)
Definition: table.cc:7279
uint hidden_field_count
Count of hidden fields, if internal temporary table; 0 otherwise.
Definition: table.h:1441
bool is_nullable() const
Return whether table is nullable.
Definition: table.h:1996
MY_BITMAP tmp_set
Definition: table.h:1589
MDL_ticket * mdl_ticket
Definition: table.h:1872
bool has_gcol() const
Definition: table.h:1999
bool all_partitions_pruned_away
Definition: table.h:1871
MY_BITMAP def_read_set
Definition: table.h:1589
String * get_partial_update_buffer()
Get a buffer that can be used to hold the partially updated column value while performing partial upd...
Definition: table.cc:7601
bool setup_partial_update()
Definition: table.cc:7564
bool has_deleted_row() const
Definition: table.h:2100
bool check_read_removal(uint index)
Read removal is possible if the selected quick read method is using full unique index.
Definition: table.cc:7041
const Json_diff_vector * get_logical_diffs(const Field_json *field) const
Get the list of JSON diffs that have been collected for a given column in the current row,...
Definition: table.cc:7735
KEY_PART_INFO * base_key_parts
Key part array for generated keys, used for materialized derived tables.
Definition: table.h:1494
bool is_started() const
Definition: table.h:2027
MY_BITMAP cond_set
Definition: table.h:1598
void mark_columns_used_by_index_no_reset(uint index, MY_BITMAP *map, uint key_parts=0) const
mark columns used by key, but don't reset other fields
Definition: table.cc:5510
void reset()
Reset state of fields after optimization and execution.
Definition: table.cc:4156
MY_BITMAP pack_row_tmp_set
Definition: table.h:1589
void default_column_bitmaps()
Definition: table.h:1916
void drop_unused_tmp_keys(bool modify_share)
For a materialized derived table: after move_tmp_key() has moved all definitions of used KEYs,...
Definition: table.cc:6098
void clear_partial_update_diffs()
Clear the diffs that have been collected for partial update of JSON columns, and re-enable partial up...
Definition: table.cc:7606
void set_null_row()
Set current row as "null row", for use in null-complemented outer join.
Definition: table.h:2066
handler * get_primary_handler() const
Returns the primary engine handler for the table.
Definition: table.cc:7286
Sql_table_check_constraint_list * table_check_constraint_list
Definition: table.h:1713
Key_map possible_quick_keys
Definition: table.h:1471
bool created
For tmp tables.
Definition: table.h:1826
bool has_row() const
Definition: table.h:2091
const Cost_model_table * cost_model() const
Return the cost model object for this table.
Definition: table.h:2135
Field * next_number_field
Definition: table.h:1496
void update_const_key_parts(Item *conds)
Update TABLE::const_key_parts for single table UPDATE/DELETE query.
Definition: table.cc:7011
void save_null_flags()
Save the NULL flags of the current row into the designated buffer.
Definition: table.h:2109
Field * found_next_number_field
Definition: table.h:1497
Key_map keys_in_use_for_order_by
Definition: table.h:1488
void set_row_status_from_handler(int status)
Set "row found" status from handler result.
Definition: table.h:2051
Field ** visible_field_ptr() const
Definition: table.h:1936
uchar * null_flags_saved
Saved null_flags while null_row is true.
Definition: table.h:1585
uchar * write_row_record
Definition: table.h:1444
ha_rows m_limit_rows
A priori unlimited.
Definition: table.h:1527
MY_BITMAP def_write_set
Definition: table.h:1589
bool is_union_or_table() const
Test if this tmp table stores the result of a UNION set operation or a single table.
Definition: table.h:1552
uint lock_count
Definition: table.h:1708
Field * hash_field
Field used by unique constraint.
Definition: table.h:1503
MY_BITMAP def_fields_set_during_insert
Bitmap of table fields (columns), which are explicitly set in the INSERT INTO statement.
Definition: table.h:1607
bool mark_column_for_partial_update(const Field *field)
Mark a given column as one that can potentially be updated using partial update during execution of a...
Definition: table.cc:7499
Field * fts_doc_id_field
Definition: table.h:1575
bool autoinc_field_has_explicit_non_null_value
To indicate that value of the auto_increment field was provided explicitly by the user or from some o...
Definition: table.h:1787
KEY * key_info
Definition: table.h:1489
bool init_tmp_table(THD *thd, TABLE_SHARE *share, MEM_ROOT *m_root, CHARSET_INFO *charset, const char *alias, Field **fld, uint *blob_fld, bool is_virtual)
Initialize table as internal tmp table.
Definition: table.cc:4201
void set_found_row()
Set status for row buffer: contains row.
Definition: table.h:2030
void mark_column_used(Field *field, enum enum_mark_columns mark)
Mark column as either read or written (or none) according to mark_used.
Definition: table.cc:5429
void set_nullable()
Set table as nullable, ie it is inner wrt some outer join.
Definition: table.h:1993
Blob_mem_storage * blob_storage
Initialized in Item_func_group_concat::setup for appropriate temporary table if GROUP_CONCAT is used ...
Definition: table.h:1855
void set_updated_row()
Set "updated" property for the current row.
Definition: table.h:2079
TABLE * prev
Definition: table.h:1403
void prepare_for_position(void)
Tell handler we are going to call position() and rnd_pos() later.
Definition: table.cc:5404
TABLE_SHARE * s
Definition: table.h:1401
bool has_columns_marked_for_partial_update() const
Does this table have any columns that were marked with mark_column_for_partial_update()?
Definition: table.cc:7586
void set_set_counter(Field_longlong *set_counter, bool is_except)
Initialize the set counter field pointer and the type of set operation other than UNION.
Definition: table.h:1563
MY_BITMAP * m_partial_update_columns
Bitmap that tells which columns are eligible for partial update in an update statement.
Definition: table.h:2188
bool copy_blobs
Definition: table.h:1731
void add_logical_diff(const Field_json *field, const Json_seekable_path &path, enum_json_diff_operation operation, const Json_wrapper *new_value)
Add a logical JSON diff describing a logical change to a JSON column in partial update.
Definition: table.cc:7705
bool is_distinct() const
Definition: table.h:1555
bool add_tmp_key(Field_map *key_parts, bool invisible, bool modify_share)
Add one key to a materialized derived table.
Definition: table.cc:5909
SortingIterator * duplicate_removal_iterator
Definition: table.h:1862
void update_covering_prefix_keys(Field *field, uint16 key_read_length, Key_map *covering_prefix_keys)
Update covering keys depending on max read key length.
Definition: table.cc:7964
bool nullable
If true, this table is inner w.r.t.
Definition: table.h:1720
Key_map merge_keys
Definition: table.h:1459
Sort_result unique_result
The result of applying a unique operation (by row ID) to the table, if done.
Definition: table.h:1868
bool is_created() const
Return true if table is instantiated, and false otherwise.
Definition: table.h:1980
uint quick_key_parts[MAX_KEY]
Definition: table.h:1693
MY_BITMAP * write_set
Definition: table.h:1633
bool no_rows
True if writes to this table should not write rows and just write keys.
Definition: table.h:1753
LEX_CSTRING referenced_table_db
Definition: table.h:658
dd::Foreign_key::enum_rule delete_rule
Definition: table.h:665
LEX_CSTRING unique_constraint_name
Name of unique key matching FK in parent table, "" if there is no unique key.
Definition: table.h:664
LEX_CSTRING * column_name
Arrays with names of referencing columns of the FK.
Definition: table.h:670
uint columns
Definition: table.h:666
dd::Foreign_key::enum_rule update_rule
Definition: table.h:665
LEX_CSTRING referenced_table_name
Definition: table.h:659
dd::Foreign_key::enum_rule delete_rule
Definition: table.h:676
dd::Foreign_key::enum_rule update_rule
Definition: table.h:676
LEX_CSTRING referencing_table_name
Definition: table.h:675
LEX_CSTRING referencing_table_db
Definition: table.h:674
handlerton is a singleton structure - one instance per storage engine - to provide access to storage ...
Definition: handler.h:2622
An instrumented mutex structure.
Definition: mysql_mutex_bits.h:50
Definition: sql_plugin_ref.h:45
Contains the class Table_id, mainly used for row based replication.
thr_lock_type
Definition: thr_lock.h:51
@ TL_WRITE_LOW_PRIORITY
Definition: thr_lock.h:90
@ TL_UNLOCK
Definition: thr_lock.h:53
@ TL_READ
Definition: thr_lock.h:62
@ TL_WRITE_ALLOW_WRITE
Definition: thr_lock.h:73
#define NULL
Definition: types.h:55
unsigned int uint
Definition: uca9-dump.cc:75
static void mark()
Definition: xcom_transport.cc:680