153#define store_record(A, B) \
154 memcpy((A)->B, (A)->record[0], (size_t)(A)->s->reclength)
155#define restore_record(A, B) \
156 memcpy((A)->record[0], (A)->B, (size_t)(A)->s->reclength)
157#define cmp_record(A, B) \
158 memcmp((A)->record[0], (A)->B, (size_t)(A)->s->reclength)
160#define tmp_file_prefix "#sql"
161#define tmp_file_prefix_length 4
162#define TMP_TABLE_KEY_EXTRA 8
163#define PLACEHOLDER_TABLE_ROW_ESTIMATE 2
646 uint deadlock_weight_arg)
1110 memcpy(key_buff,
key, key_length);
1218 uint deadlock_weight);
1394#define STATUS_NOT_STARTED 1
1400#define STATUS_NOT_FOUND 2
1402#define STATUS_UPDATED 16
1407#define STATUS_NULL_ROW 32
1409#define STATUS_DELETED 64
1980 uint *blob_fld,
bool is_virtual);
1987 uint key_parts = 0)
const;
2046 assert(index_no < s->
keys);
2063 assert((
file ==
nullptr && file_arg !=
nullptr) ||
2064 (
file !=
nullptr && file_arg ==
nullptr));
2262 Key_map *covering_prefix_keys);
2526 if (
table->s->null_bytes > 0)
2527 memset(
table->null_flags, 255,
table->s->null_bytes);
2530#define MY_I_S_MAYBE_NULL 1
2531#define MY_I_S_UNSIGNED 2
2586#define VIEW_SUID_INVOKER 0
2587#define VIEW_SUID_DEFINER 1
2588#define VIEW_SUID_DEFAULT 2
2591#define VIEW_CHECK_NONE 0
2592#define VIEW_CHECK_LOCAL 1
2593#define VIEW_CHECK_CASCADED 2
2596#define VIEW_CHECK_OK 0
2597#define VIEW_CHECK_ERROR 1
2598#define VIEW_CHECK_SKIP 2
2601#define MAX_TDC_BLOB_SIZE 65536
2921 const char *table_name_arg,
size_t table_name_length_arg,
2939 alias, lock_type) {}
2982 alias(table_name_arg),
2993 const char *table_name_arg,
size_t table_name_length_arg,
2998 alias(table_name_arg),
3009 const char *table_name_arg,
size_t table_name_length_arg,
3013 alias(table_name_arg),
3024 const char *table_name_arg,
size_t table_name_length_arg,
3038 const char *table_name_arg,
size_t table_name_length_arg,
3054 const char *table_name_arg,
size_t table_name_length_arg,
3085 assert(cond ==
nullptr || cond == (
Item *)1 ||
m_join_cond !=
nullptr);
3271 tr->m_updated =
true;
3280 tr->m_inserted =
true;
3289 tr->m_deleted =
true;
3516 if (emb->outer_join)
return true;
3821 Item *sampling_percentage_arg) {
4134 const char *
name()
override;
4152 const char *
name()
override;
4173 void next()
override;
4208 void next()
override;
4272 MY_BITMAP *write_set [[maybe_unused]]) {
4274 save[0] = read_set->bitmap;
4275 save[1] = write_set->bitmap;
4325 const char *source_name,
Field *field,
4326 bool is_create_table,
bool *error_reported);
4344 handlerton *engine_type,
bool is_create_table);
4347 uint db_stat, uint prgflag, uint ha_open_flags,
4348 TABLE *outparam,
bool is_create_table,
4351 const char *
key,
size_t key_length,
4352 bool open_secondary);
4360 bool preserve_lettercase);
4370int set_zone(
int nr,
int min_zone,
int max_zone);
4427 return (!strcmp(
"performance_schema", tl->
db) &&
4429 strstr(tl->
table_name,
"setup_") ==
nullptr);
4436 const char *
name =
table->s->table_name.str;
4444 uint *usable_parts,
bool use_extended_sk);
4446 uint primary_key_n,
KEY *keyinfo, uint key_n,
4447 uint key_part_n, uint *usable_parts,
4448 bool part_of_key_not_extended);
4464 if (!tl->
table)
return false;
4471 if (!tl->
table->
s)
return false;
4529 :
start(start_arg) {}
4534 if (cte ==
nullptr) {
4541 while (ref_idx < cte->tmp_tables.size()) {
4590 return !
table->const_table && !(
table->is_nullable() &&
table->null_row);
4683 const char *db,
const char *
table,
4684 bool is_fix_view_cols_and_deps);
uint32_t Access_bitmask
Definition: auth_acls.h:34
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:251
int64 query_id_t
Definition: binlog.h:72
Per internal schema ACL access rules.
Definition: auth_common.h:145
Per internal table ACL access rules.
Definition: auth_common.h:107
RAII class to reset TABLE::autoinc_field_has_explicit_non_null_value after processing individual row ...
Definition: table.h:4563
TABLE * m_table
Definition: table.h:4572
Autoinc_field_has_explicit_non_null_value_reset_guard(TABLE *table)
Definition: table.h:4565
~Autoinc_field_has_explicit_non_null_value_reset_guard()
Definition: table.h:4567
Class that represents a single change to a column value in partial update of a JSON column.
Definition: table.h:1338
const char * old_data(const Field *field) const
Get a pointer to the start of the old data to be replaced.
Definition: table.cc:7994
size_t length() const
Definition: table.h:1359
size_t m_length
The size of the portion that is to be replaced.
Definition: table.h:1343
const char * new_data(const Field *field) const
Get a pointer to the start of the replacement data.
Definition: table.cc:7985
Binary_diff(size_t offset, size_t length)
Create a new Binary_diff object.
Definition: table.h:1352
size_t m_offset
The offset of the start of the change.
Definition: table.h:1340
size_t offset() const
Definition: table.h:1356
Definition: sql_bitmap.h:154
Class is used as a BLOB field value storage for intermediate GROUP_CONCAT results.
Definition: table.h:1298
bool truncated_value
Sign that some values were cut during saving into the storage.
Definition: table.h:1305
Blob_mem_storage()
Definition: table.cc:4106
void reset()
Definition: table.h:1311
void set_truncated_value(bool is_truncated_value)
Definition: table.h:1328
MEM_ROOT storage
Definition: table.h:1300
~Blob_mem_storage()
Definition: table.cc:4110
bool is_truncated_value() const
Definition: table.h:1331
char * store(const char *from, size_t length)
Function creates duplicate of 'from' string in 'storage' MEM_ROOT.
Definition: table.h:1325
After parsing, a Common Table Expression is accessed through a Table_ref.
Definition: table.h:4484
Common_table_expr(MEM_ROOT *mem_root)
Definition: table.h:4486
LEX_STRING name
Name of the WITH block. Used only for EXPLAIN FORMAT=tree.
Definition: table.h:4510
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:171
bool clear_all_references()
Empties the materialized CTE and informs all of its clones.
Definition: sql_union.cc:937
bool recursive
True if it's a recursive CTE.
Definition: table.h:4501
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:4499
void remove_table(Table_ref *tr)
Remove one table reference.
Definition: sql_derived.cc:260
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:247
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:4508
API for getting cost estimates for server operations that are not directly related to a table object.
Definition: opt_costmodel.h:54
API for getting cost estimates for operations on table data.
Definition: opt_costmodel.h:242
void init(const Cost_model_server *cost_model_server, const TABLE *table)
Initializes the cost model object.
Definition: opt_costmodel.cc:68
Default_object_creation_ctx – default implementation of Object_creation_ctx.
Definition: table.h:228
const CHARSET_INFO * get_client_cs()
Definition: table.h:230
void change_env(THD *thd) const override
Definition: table.cc:221
void delete_backup_ctx() override
Definition: table.cc:219
Default_object_creation_ctx(THD *thd)
Definition: table.cc:206
const CHARSET_INFO * get_connection_cl()
Definition: table.h:232
Object_creation_ctx * create_backup_ctx(THD *thd) const override
Definition: table.cc:214
const CHARSET_INFO * m_connection_cl
connection_cl stores the value of collation_connection session variable.
Definition: table.h:266
const CHARSET_INFO * m_client_cs
client_cs stores the value of character_set_client session variable.
Definition: table.h:256
This structure is used to keep info about possible key for the result table of a derived table/view.
Definition: table.h:2858
table_map referenced_by
Definition: table.h:2860
Field_map used_fields
Definition: table.h:2861
uint key_part_count
Definition: table.h:2862
This iterates on those references to a derived table / view / CTE which are materialized.
Definition: table.h:4523
bool is_first() const
Definition: table.h:4552
TABLE * get_next()
Definition: table.h:4530
Derived_refs_iterator(const Table_ref *start_arg)
Definition: table.h:4528
const Table_ref * start
The reference provided in construction.
Definition: table.h:4524
bool m_is_first
True when at first reference in list.
Definition: table.h:4526
size_t ref_idx
Current index in cte->tmp_tables.
Definition: table.h:4525
void rewind()
Definition: table.h:4547
These members were removed from TABLE_SHARE as they are not used in in the code.
Definition: table.h:4609
utype
Definition: table.h:4624
@ CASEUP
Definition: table.h:4629
@ NO
Definition: table.h:4634
@ NONE
Definition: table.h:4625
@ REL
Definition: table.h:4635
@ NEXT_NUMBER
Definition: table.h:4641
@ DATE
Definition: table.h:4626
@ PNR
Definition: table.h:4630
@ BIT_FIELD
Definition: table.h:4643
@ TIMESTAMP_OLD_FIELD
Definition: table.h:4644
@ GENERATED_FIELD
Definition: table.h:4650
@ INTERVAL_FIELD
Definition: table.h:4642
@ TIMESTAMP_UN_FIELD
Definition: table.h:4648
@ NOEMPTY
Definition: table.h:4628
@ CHECK
Definition: table.h:4636
@ YES
Definition: table.h:4633
@ TIMESTAMP_DNUN_FIELD
Definition: table.h:4649
@ BLOB_FIELD
Definition: table.h:4646
@ UNKNOWN_FIELD
Definition: table.h:4639
@ CASEDN
Definition: table.h:4640
@ TIMESTAMP_DN_FIELD
Definition: table.h:4647
@ PGNR
Definition: table.h:4632
@ EMPTY_VAL
Definition: table.h:4637
@ CAPITALIZE
Definition: table.h:4645
@ SHIELD
Definition: table.h:4627
@ BGNR
Definition: table.h:4631
bool null_field_first
Definition: table.h:4620
uchar frm_version
Definition: table.h:4658
handlerton * default_part_db_type
Definition: table.h:4619
TYPELIB fieldnames
Definition: table.h:4659
const File_parser * view_def
For shares representing views File_parser object with view definition read from .FRM file.
Definition: table.h:4657
uint stored_fields
Definition: table.h:4621
FRM_context()
Definition: table.h:4611
~Field_iterator_natural_join() override=default
Natural_join_column * column_ref()
Definition: table.h:4180
void next() override
Definition: table.cc:5165
void set(Table_ref *table) override
Definition: table.cc:5159
Natural_join_column * cur_column_ref
Definition: table.h:4167
Field_iterator_natural_join()
Definition: table.h:4170
const char * name() override
Definition: table.h:4175
Item_ident * create_item(THD *thd) override
Definition: table.h:4176
List_iterator_fast< Natural_join_column > column_ref_it
Definition: table.h:4166
bool end_of_fields() override
Definition: table.h:4174
Field * field() override
Definition: table.h:4179
Generic iterator over the fields of an arbitrary table reference.
Definition: table.h:4197
Field_iterator * field_it
Definition: table.h:4202
Field_iterator_view view_field_it
Definition: table.h:4200
Table_ref * table_ref
Definition: table.h:4198
const char * get_table_name()
Definition: table.cc:5238
Field * field() override
Definition: table.h:4219
const char * get_db_name()
Definition: table.cc:5245
Field_iterator_table_ref()
Definition: table.h:4206
void set(Table_ref *table) override
Definition: table.cc:5215
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:5306
Table_ref * first_leaf
Definition: table.h:4198
GRANT_INFO * grant()
Definition: table.cc:5265
void next() override
Definition: table.cc:5224
Field_iterator_table table_field_it
Definition: table.h:4199
Table_ref * last_leaf
Definition: table.h:4198
const char * name() override
Definition: table.h:4212
Natural_join_column * get_natural_column_ref()
Return an existing reference to a column of a natural/using join.
Definition: table.cc:5386
void set_field_iterator()
Definition: table.cc:5172
Item_ident * create_item(THD *thd) override
Definition: table.h:4216
bool end_of_fields() override
Definition: table.h:4209
Field_iterator_natural_join natural_join_it
Definition: table.h:4201
Item_ident * create_item(THD *thd) override
Definition: table.cc:5085
const char * name() override
Definition: table.cc:5083
Field ** ptr
Definition: table.h:4126
void set_table(TABLE *table)
Definition: table.h:4131
void next() override
Definition: table.h:4132
Field_iterator_table()
Definition: table.h:4129
bool end_of_fields() override
Definition: table.h:4133
void set(Table_ref *table) override
Definition: table.h:4130
Field * field() override
Definition: table.h:4136
Iterator over the fields of a merged derived table or view.
Definition: table.h:4143
void next() override
Definition: table.h:4150
Item_ident * create_item(THD *thd) override
Definition: table.cc:5103
Item * item()
Definition: table.h:4156
Table_ref * view
Definition: table.h:4145
Field_iterator_view()
Definition: table.h:4148
Field_translator * field_translator()
Definition: table.h:4157
Item ** item_ptr()
Definition: table.h:4154
void set(Table_ref *table) override
Definition: table.cc:5076
Field * field() override
Definition: table.h:4155
Field_translator * array_end
Definition: table.h:4144
const char * name() override
Definition: table.cc:5101
Field_translator * ptr
Definition: table.h:4144
bool end_of_fields() override
Definition: table.h:4151
virtual const char * name()=0
virtual Field * field()=0
virtual void set(Table_ref *)=0
virtual ~Field_iterator()=default
virtual Item_ident * create_item(THD *)=0
virtual bool end_of_fields()=0
A field that stores a JSON value.
Definition: field.h:4062
Definition: parse_file.h:87
Definition: sql_auth_cache.h:465
Base class to be used by handlers different shares.
Definition: handler.h:4127
Intrusive parameterized list.
Definition: sql_plist.h:75
Definition: sql_lex.h:490
A wrapper Item that normally returns its parameter, but becomes NULL when processing rows for rollup.
Definition: item_func.h:1718
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:930
Query optimization plan node.
Definition: sql_select.h:602
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:295
Abstraction for accessing JSON values irrespective of whether they are (started out as) binary JSON v...
Definition: json_dom.h:1150
ulong flags
dupp key and pack flags
Definition: key.h:118
Definition: sql_list.h:654
Definition: sql_list.h:494
Context of the owner of metadata locks.
Definition: mdl.h:1429
A pending metadata lock request.
Definition: mdl.h:803
void set_type(enum_mdl_type type_arg)
Set type of lock request.
Definition: mdl.h:854
A granted metadata lock.
Definition: mdl.h:986
An abstract class for inspection of a connected subgraph of the wait-for graph.
Definition: mdl.h:921
Abstract class representing an edge in the waiters graph to be traversed by deadlock detection algori...
Definition: mdl.h:947
This class caches table_paths for materialized tables.
Definition: table.cc:7519
A typesafe replacement for DYNAMIC_ARRAY.
Definition: mem_root_array.h:426
Item_field * table_field
Definition: table.h:2625
Field_translator * view_field
Definition: table.h:2624
Natural_join_column(Field_translator *field_param, Table_ref *tab)
Definition: table.cc:5005
const char * name()
Definition: table.cc:5028
Table_ref * table_ref
Definition: table.h:2626
bool is_common
Definition: table.h:2634
const char * db_name()
Definition: table.cc:5060
GRANT_INFO * grant()
Definition: table.cc:5074
Field * field()
Definition: table.cc:5047
const char * table_name()
Definition: table.cc:5055
Item_ident * create_item(THD *thd)
Definition: table.cc:5037
Object_creation_ctx – interface for creation context of database objects (views, stored routines,...
Definition: table.h:204
void restore_env(THD *thd, Object_creation_ctx *backup_ctx)
Definition: table.cc:194
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:184
Query block level hints.
Definition: opt_hints.h:373
Table level hints.
Definition: opt_hints.h:562
Definition: sql_executor.h:256
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:1159
This class represents a query expression (one query block or several query blocks combined with UNION...
Definition: sql_lex.h:627
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:54
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:167
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Element that represents the table in the specific table cache.
Definition: table_cache.h:265
Cache for open TABLE objects.
Definition: table_cache.h:74
Table_check_intact()
Definition: table.h:615
bool has_keys
Definition: table.h:611
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:3773
virtual ~Table_check_intact()=default
Class representing a table function.
Definition: table_function.h:53
The Table_histograms_collection manages a collection of reference-counted snapshots of histogram stat...
Definition: table_histograms.h:239
The Table_histograms class represents a snapshot of the collection of histograms associated with a ta...
Definition: table_histograms.h:145
bool m_inserted
True if table is target of INSERT statement.
Definition: table.h:3885
LEX_STRING view_body_utf8
Definition: table.h:3992
bool force_index_group_saved
Definition: table.h:4098
bool view_no_explain
if true, EXPLAIN can't explain view due to insufficient rights.
Definition: table.h:4021
AccessPath * GetCachedMaterializedPath(const AccessPath *table_path)
Search m_materialized_path_cache for a materialization path for 'table_path'.
Definition: table.cc:7597
Common_table_expr * m_common_table_expr
If non-NULL, the CTE which this table is derived from.
Definition: table.h:3734
bool is_base_table() const
Definition: table.h:3183
bool m_is_sj_or_aj_nest
Definition: table.h:3633
const char * get_table_name() const
Returns the name of the table that this Table_ref represents.
Definition: table.h:3464
Key_map keys_in_use_for_group_by_saved
Definition: table.h:4093
List< String > * join_using_fields
Definition: table.h:3658
void set_privileges(Access_bitmask privilege)
Set granted privileges for a table.
Definition: table.h:3581
Item * derived_where_cond
WHERE condition from derived table.
Definition: table.h:3813
char timestamp_buffer[20]
Definition: table.h:3934
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:6390
MY_BITMAP read_set_saved
Definition: table.h:4100
bool is_updatable() const
Return true if table is updatable.
Definition: table.h:3254
ulonglong with_check
WITH CHECK OPTION.
Definition: table.h:3855
bool generate_keys(THD *thd)
Generate keys for a materialized derived table/view.
Definition: table.cc:7038
void set_lock(const Lock_descriptor &descriptor)
Definition: table.h:3610
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:2948
Lock_descriptor m_lock_descriptor
Definition: table.h:3860
bool prepare_replace_filter(THD *thd)
Prepare replace filter for a view (used for REPLACE command)
Definition: table.cc:4728
bool can_push_condition_to_derived(THD *thd)
Check if we can push outer where condition to this derived table.
Definition: sql_derived.cc:1081
COND_EQUAL * cond_equal
Used with outer join.
Definition: table.h:4063
bool setup_table_function(THD *thd)
Setup a table function to use materialization.
Definition: sql_derived.cc:997
bool is_aj_nest() const
Definition: table.h:3093
table_map sj_inner_tables
Definition: table.h:3642
LEX * view_query() const
Return the valid LEX object for a view.
Definition: table.h:3360
Table_ref * first_leaf_table()
Return first leaf table of a base table or a view/derived table.
Definition: table.h:3328
table_map m_map
Table map, derived from m_tableno.
Definition: table.h:3625
const Create_col_name_list * derived_column_names() const
Definition: table.h:4045
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:4866
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:3745
Field_translator * field_translation
Array of selected expressions from a derived table or view.
Definition: table.h:3772
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:3872
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:2920
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:3314
ulonglong m_table_ref_version
See comments for TABLE_SHARE::get_table_ref_version()
Definition: table.h:4082
Table_ref * outer_join_nest() const
Returns the outer join nest that this Table_ref belongs to, if any.
Definition: table.h:3498
bool has_tablesample() const
Definition: table.h:3826
double sampling_percentage_val
Definition: table.h:3723
void set_updatable()
Set table as updatable. (per default, a table is non-updatable)
Definition: table.h:3257
bool prepare_security(THD *thd)
Prepare security context for a view.
Definition: table.cc:4982
void set_deleted()
Set table and all referencing views as being deleted from.
Definition: table.h:3287
bool check_option_processed
true <=> VIEW CHECK OPTION condition is processed (also for prep. stmts)
Definition: table.h:3929
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:4794
bool is_external() const
Is this table only available in an external storage engine?
Definition: table.cc:7446
void set_derived_query_expression(Query_expression *query_expr)
Set the query expression of a derived table or view.
Definition: table.h:3369
Query_block * schema_query_block
Definition: table.h:3758
ST_SCHEMA_TABLE * schema_table
Definition: table.h:3757
enum_table_ref_type m_table_ref_type
See comments for set_metadata_id()
Definition: table.h:4080
ulonglong updatable_view
VIEW can be updated.
Definition: table.h:3844
table_map map() const
Return table map derived from table number.
Definition: table.h:4036
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:3632
bool cacheable_table
stop PS caching
Definition: table.h:3920
bool is_derived_unfinished_materialization() const
Definition: table.cc:7436
void set_derived_column_names(const Create_col_name_list *d)
Definition: table.h:4048
Table_ref * embedding
The nested join containing this table reference.
Definition: table.h:3916
bool is_placeholder() const
Definition: table.h:3209
bool schema_table_filled
Definition: table.h:4016
void set_updated()
Set table and all referencing views as being updated.
Definition: table.h:3269
void set_uses_materialization()
Set table to be materialized.
Definition: table.h:3246
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:3037
Field_translator * field_translation_end
pointer to element after last one in translation table above
Definition: table.h:3775
Security_context * find_view_security_context(THD *thd)
Find security context of current view.
Definition: table.cc:4951
Key_map merge_keys_saved
Definition: table.h:4091
bool setup_materialized_derived_tmp_table(THD *thd)
Sets up the tmp table to contain the derived table's rows.
Definition: sql_derived.cc:873
mem_root_deque< Table_ref * > * join_list
The join list immediately containing this table reference.
Definition: table.h:3918
bool is_mergeable() const
Return true if view or derived table and can be merged.
Definition: table.cc:6522
mem_root_deque< Table_ref * > * view_tables
Definition: table.h:3787
uint m_tableno
The members below must be kept aligned so that (1 << m_tableno) == m_map.
Definition: table.h:3624
void print(const THD *thd, String *str, enum_query_type query_type) const
Produce a textual identification of this object.
Definition: sql_lex.cc:2931
@ OPEN_IF_EXISTS
Definition: table.h:3948
@ OPEN_STUB
Definition: table.h:3955
@ OPEN_FOR_CREATE
Definition: table.h:3953
Table_ref * referencing_view
Definition: table.h:3794
void set_fulltext_searched()
Set table as full-text search (default is not fulltext searched)
Definition: table.h:3293
Table_ref * correspondent_table
Definition: table.h:3692
bool is_view() const
Return true if this represents a named view.
Definition: table.h:3162
List< Natural_join_column > * join_columns
Definition: table.h:3663
int view_check_option(THD *thd) const
Evaluate the check option of a view.
Definition: table.cc:4771
const char * get_db_name() const
Returns the name of the database that the referenced table belongs to.
Definition: table.h:3456
bool updating
True for tables and views being changed in a data change statement.
Definition: table.h:3897
bool m_insertable
True if VIEW/TABLE is insertable, based on analysis of query (SQL rules).
Definition: table.h:3881
void set_readonly()
Set table as readonly, ie it is neither updatable, insertable nor deletable during this statement.
Definition: table.h:3305
bool is_updated() const
Return true if table is being updated.
Definition: table.h:3266
bool m_updatable
True if VIEW/TABLE is updatable, based on analysis of query (SQL rules).
Definition: table.h:3879
void set_tableno(uint tableno)
Set table number.
Definition: table.h:4027
enum_view_algorithm effective_algorithm
The view algorithm that is actually used, if this is a view.
Definition: table.h:3859
bool is_inner_table_of_outer_join() const
Return true if this table is an inner table of some outer join.
Definition: table.h:3513
Table_ref * belong_to_view
Definition: table.h:3789
LEX * view
Definition: table.h:3768
bool set_insert_values(MEM_ROOT *mem_root)
Allocate a buffer for inserted column values.
Definition: table.cc:4815
MY_BITMAP read_set_internal_saved
Definition: table.h:4102
bool is_derived() const
Return true if this represents a derived table (an unnamed view)
Definition: table.h:3165
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:4072
const Table_ref * updatable_base_table() const
Return the base table entry of an updatable table.
Definition: table.h:3526
void restore_properties()
Restore persistent properties into TABLE from Table_ref.
Definition: table.cc:4499
Table_ref ** prev_global
Definition: table.h:3596
Query_block * query_block
Definition: table.h:3765
const Table_ref * top_table() const
Return the outermost view this table belongs to, or itself.
Definition: table.h:3143
void set_merged()
Set table to be merged.
Definition: table.h:3235
void set_insertable()
Set table as insertable-into. (per default, a table is not insertable)
Definition: table.h:3263
uint tableno() const
Return table number.
Definition: table.h:4033
size_t db_length
Definition: table.h:3874
List< Index_hint > * index_hints
Definition: table.h:3676
LEX_STRING select_stmt
text of (CREATE/SELECT) statement
Definition: table.h:3816
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:3053
bool is_natural_join
Definition: table.h:3656
Query_expression * derived
This field is set to non-null for derived tables and views.
Definition: table.h:3731
MY_BITMAP lock_partitions_saved
Definition: table.h:4099
bool is_fulltext_searched() const
Returns true if a MATCH function references this table.
Definition: table.h:3296
Table_ref * natural_join
Definition: table.h:3650
bool outer_join
True if right argument of LEFT JOIN; false in other cases (i.e.
Definition: table.h:3869
Table_ref * parent_l
Definition: table.h:3796
bool is_table_function() const
Return true if this represents a table function.
Definition: table.h:3171
bool m_updated
True if table is target of UPDATE statement, or updated in IODKU stmt.
Definition: table.h:3883
bool optimized_away
true <=> this table is a const one and was optimized away.
Definition: table.h:4066
bool is_insertable() const
Return true if table is insertable-into.
Definition: table.h:3260
bool is_alias
true if an alias for this table was specified in the SQL.
Definition: table.h:3959
bool straight
Definition: table.h:3890
int fetch_number_of_rows(ha_rows fallback_estimate=PLACEHOLDER_TABLE_ROW_ESTIMATE)
Retrieve number of rows in the table.
Definition: table.cc:6580
void set_join_cond(Item *val)
Definition: table.h:3074
bool is_system_view
Definition: table.h:3995
uint8 trg_event_map
Indicates what triggers we need to pre-load for this Table_ref when opening an associated TABLE.
Definition: table.h:4015
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:4882
bool schema_table_reformed
Definition: table.h:3763
bool is_sj_or_aj_nest() const
Definition: table.h:3095
Key_map keys_in_use_for_query_saved
Definition: table.h:4092
MY_BITMAP write_set_saved
Definition: table.h:4101
List< String > * partition_names
Definition: table.h:4024
bool force_index_order_saved
Definition: table.h:4097
Query_expression * derived_query_expression() const
Return the query expression of a derived table or view.
Definition: table.h:3374
bool ignore_leaves
preload only non-leaf nodes (IS THIS USED???)
Definition: table.h:3899
Table_ref * next_leaf
Definition: table.h:3812
bool is_leaf_for_name_resolution() const
Test if this is a leaf with respect to name resolution.
Definition: table.cc:4843
Table_ref * next_local
Definition: table.h:3594
Table_ref * merge_underlying_list
Definition: table.h:3781
LEX_CSTRING target_tablespace_name
Definition: table.h:3602
dd::enum_table_type required_type
Definition: table.h:3933
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:4371
bool m_was_scalar_subquery
If true, this table is a derived (materialized) table which was created from a scalar subquery,...
Definition: table.h:3969
bool is_recursive_reference() const
Definition: table.h:3180
GRANT_INFO grant
Definition: table.h:3863
Table_ref * top_table()
Definition: table.h:3147
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:3418
void set_sj_or_aj_nest()
Makes the next a semi/antijoin nest.
Definition: table.h:3097
bool validate_tablesample_clause(THD *thd)
Definition: table.cc:7460
void set_table_ref_id(enum_table_ref_type table_ref_type_arg, ulonglong table_ref_version_arg)
Definition: table.h:3433
void set_tablesample(tablesample_type sampling_type_arg, Item *sampling_percentage_arg)
Definition: table.h:3820
bool is_internal() const
Definition: table.h:3199
bool prepare_view_security_context(THD *thd)
Load security context information for this view.
Definition: table.cc:4906
const Lock_descriptor & lock_descriptor() const
Definition: table.h:3614
bool nullable_saved
Definition: table.h:4095
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:3914
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:2965
const char * db
Definition: table.h:3597
Security_context * security_ctx
Definition: table.h:3801
bool is_inserted() const
Return true if table is being inserted into.
Definition: table.h:3275
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:2992
bool materialize_derived(THD *thd)
Materialize derived table.
Definition: sql_derived.cc:1751
MaterializedPathCache * m_materialized_path_cache
If we've previously made an access path for “derived”, it is cached here.
Definition: table.h:3754
Security_context * view_sctx
Definition: table.h:3806
bool merge_where(THD *thd)
Merge WHERE condition of view or derived table into outer query.
Definition: table.cc:4535
ulonglong view_suid
view is suid (true by default)
Definition: table.h:3854
ulonglong algorithm
The declared algorithm, if this is a view.
Definition: table.h:3853
enum Table_ref::@190 OPEN_NORMAL
Indicates that if Table_ref object corresponds to the table/view which requires special handling.
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:7441
List< Derived_key > derived_key_list
Definition: table.h:4008
bool prepare_check_option(THD *thd, bool is_cascaded=false)
Prepare check option for a view.
Definition: table.cc:4669
void set_common_table_expr(Common_table_expr *c)
Definition: table.h:4043
Table_ref * next_global
Definition: table.h:3596
bool optimize_derived(THD *thd)
Optimize the query expression representing a derived table/view.
Definition: sql_derived.cc:1641
LEX_STRING timestamp
GMT time stamp of last operation.
Definition: table.h:3818
bool replace_filter_processed
true <=> Filter condition is processed
Definition: table.h:3931
tablesample_type sampling_type
Sampling information.
Definition: table.h:3720
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:2977
mysql::binlog::event::Table_id table_id
Definition: table.h:3679
enum_open_type open_type
Specifies which kind of table should be open for this element of table list.
Definition: table.h:3925
bool materializable_is_const() const
Checks if this is a table that contains zero rows or one row, and that can be materialized during opt...
Definition: table.cc:6536
Item * m_join_cond_optim
Optimized copy of m_join_cond (valid for one single execution).
Definition: table.h:4060
table_map join_cond_dep_tables
The outer tables that an outer join's join condition depends on.
Definition: table.h:3906
Table_ref * updatable_base_table()
Definition: table.h:3536
Item * replace_filter
Filter for REPLACE command.
Definition: table.h:3815
bool merge_underlying_tables(Query_block *select)
Merge tables from a query block into a nested join structure.
Definition: table.cc:4407
Common_table_expr * common_table_expr() const
If non-NULL, the CTE which this table is derived from.
Definition: table.h:4042
bool internal_tmp_table
Definition: table.h:3957
LEX_STRING source
source of CREATE VIEW
Definition: table.h:3817
bool update_sampling_percentage()
Definition: table.cc:7492
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:3008
LEX_CSTRING view_connection_cl_name
Definition: table.h:3986
LEX_CSTRING view_client_cs_name
Definition: table.h:3985
bool save_properties()
Save persistent properties from TABLE into Table_ref.
Definition: table.cc:4468
bool is_join_columns_complete
Definition: table.h:3665
bool m_is_recursive_reference
If a recursive reference inside the definition of a CTE.
Definition: table.h:4076
bool is_deleted() const
Return true if table is being deleted from.
Definition: table.h:3284
bool prelocking_placeholder
Definition: table.h:3939
LEX_USER definer
definer of view
Definition: table.h:3819
const char * table_name
Definition: table.h:3597
Item * sampling_percentage
Definition: table.h:3699
uint shared
Definition: table.h:3873
Item ** join_cond_optim_ref()
Definition: table.h:3088
bool create_field_translation(THD *thd)
Create field translation for merged derived table/view.
Definition: table.cc:4572
bool create_materialized_table(THD *thd)
Create result table for a materialized derived table/view.
Definition: sql_derived.cc:1689
uint query_block_id_for_explain() const
This is for showing in EXPLAIN.
Definition: table.cc:6335
Opt_hints_table * opt_hints_table
Table level optimizer hints for this table.
Definition: table.h:3606
tablesample_type get_sampling_type() const
Definition: table.h:3836
bool setup_materialized_derived(THD *thd)
Setup a derived table to use materialization.
Definition: sql_derived.cc:861
Table_ref * any_outer_leaf_table()
Return any leaf table that is not an inner table of an outer join.
Definition: table.h:3339
View_creation_ctx * view_creation_ctx
Definition: table.h:3973
char * option
Definition: table.h:3603
void AddMaterializedPathToCache(THD *thd, AccessPath *materialize_path, const AccessPath *table_path)
For a view or derived table: Add materialize_path and table_path to m_materialized_path_cache.
Definition: table.cc:7605
double get_sampling_percentage() const
Definition: table.cc:7508
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:3023
TABLE * table
Definition: table.h:3677
void set_view_query(LEX *lex)
Set the LEX object of a view (will also define this as a view).
Definition: table.h:3357
void set_inserted()
Set table and all referencing views as being inserted into.
Definition: table.h:3278
bool update_derived_keys(THD *, Field *, Item **, uint, bool *)
Update derived table's list of possible keys.
Definition: table.cc:6901
uint query_block_id() const
If a derived table, returns query block id of first underlying query block.
Definition: table.cc:6330
bool m_fulltext_searched
True if fulltext searched.
Definition: table.h:3888
Item * join_cond() const
Definition: table.h:3073
Table_ref * next_name_resolution_table
Definition: table.h:3674
bool is_view_or_derived() const
Return true if this represents a named view or a derived table.
Definition: table.h:3168
bool is_merged() const
Return true if this is a derived table or view that is merged.
Definition: table.h:3232
void set_join_cond_optim(Item *cond)
Definition: table.h:3080
table_map dep_tables
The set of tables in the query block that this table depends on.
Definition: table.h:3904
size_t table_name_length
Definition: table.h:3875
bool uses_materialization() const
Return true if this is a materializable derived table/view.
Definition: table.h:3241
void add_join_natural(Table_ref *b)
Mark that there is a NATURAL JOIN or JOIN ... USING between two tables.
Definition: table.h:3571
bool is_sj_nest() const
Definition: table.h:3091
bool contain_auto_increment
Definition: table.h:3927
bool resolve_derived(THD *thd, bool apply_semijoin)
Resolve a derived table or view reference.
Definition: sql_derived.cc:274
Key_map covering_keys_saved
Definition: table.h:4090
uint leaf_tables_count() const
Return no. of base tables a merged view or derived table is defined over.
Definition: table.cc:6548
const char * alias
Definition: table.h:3597
Item * join_cond_optim() const
Definition: table.h:3079
bool set_recursive_reference()
Definition: table.cc:7429
Opt_hints_qb * opt_hints_qb
Definition: table.h:3608
bool is_dd_ctx_table
Definition: table.h:4003
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:2908
bool is_fqtn
true if the table is referred to in the statement using a fully qualified name (<db_name>.
Definition: table.h:3963
bool force_index_saved
Definition: table.h:4096
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:2911
Item ** join_cond_ref()
Definition: table.h:3072
void ClearMaterializedPathCache()
Empty m_materialized_path_cache.
Definition: table.h:3716
Key_map keys_in_use_for_order_by_saved
Definition: table.h:4094
Table_function * table_function
Definition: table.h:3697
bool m_deleted
True if table is target of DELETE statement, or deleted in REPLACE stmt.
Definition: table.h:3887
MDL_request mdl_request
Definition: table.h:4018
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:2936
Item * check_option
WITH CHECK OPTION condition.
Definition: table.h:3814
Query_result_union * derived_result
Definition: table.h:3684
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:3429
void reset()
Reset table.
Definition: table.cc:4422
This class holds all information about triggers of a table.
Definition: table_trigger_dispatcher.h:68
Object containing parameters used when creating and using temporary tables.
Definition: temp_table_param.h:97
This class represents a trigger object.
Definition: trigger.h:90
Used for storing information associated with generated column, default values generated from expressi...
Definition: field.h:485
View_creation_ctx – creation context of view objects.
Definition: table.h:273
static View_creation_ctx * create(THD *thd)
Definition: table.cc:232
View_creation_ctx(THD *thd)
Definition: table.h:280
Class representing the fact that some thread waits for table share to be flushed.
Definition: table.h:639
MDL_context * m_ctx
Definition: table.h:640
Wait_for_flush ** prev_in_share
Definition: table.h:661
Wait_for_flush * next_in_share
Pointers for participating in the list of waiters for table share.
Definition: table.h:660
TABLE_SHARE * m_share
Definition: table.h:641
MDL_context * get_ctx() const
Definition: table.h:651
uint m_deadlock_weight
Definition: table.h:642
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:3911
Wait_for_flush(MDL_context *ctx_arg, TABLE_SHARE *share_arg, uint deadlock_weight_arg)
Definition: table.h:645
uint get_deadlock_weight() const override
Definition: table.cc:3915
enum_rule
Definition: foreign_key.h:54
The handler class is the interface for dynamically loadable storage engines.
Definition: handler.h:4583
@ NONE
Definition: handler.h:4670
Histogram base class.
Definition: histogram.h:314
A (partial) implementation of std::deque allocating its blocks on a MEM_ROOT.
Definition: mem_root_deque.h:111
Each table share has a table id, it is mainly used for row based replication.
Definition: table_id.h:42
Definition: partition_info.h:209
A table definition from the master.
Definition: rpl_utility.h:249
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
enum_query_type
Query type constants (usable as bitmap flags).
Definition: enum_query_type.h:31
This file contains the field type.
enum_field_types
Column types for MySQL Note: Keep include/mysql/components/services/bits/stored_program_bits....
Definition: field_types.h:55
void * memdup_root(MEM_ROOT *root, const void *str, size_t len)
Definition: my_alloc.cc:296
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:308
static int flag
Definition: hp_test1.cc:40
static uint keys
Definition: hp_test2.cc:49
enum_json_diff_operation
Enum that describes what kind of operation a Json_diff object represents.
Definition: json_diff.h:52
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.
int my_strcasecmp(const CHARSET_INFO *cs, const char *s1, const char *s2)
Definition: m_ctype.h:651
MYSQL_PLUGIN_IMPORT CHARSET_INFO * system_charset_info
Definition: mysqld.cc:1554
#define MDL_REQUEST_INIT(R, P1, P2, P3, P4, P5)
Definition: mdl.h:907
@ MDL_TRANSACTION
Locks with transaction duration are automatically released at the end of transaction.
Definition: mdl.h:344
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:553
ulong key_part_map
Definition: my_base.h:1008
my_off_t ha_rows
Definition: my_base.h:1141
#define HA_POS_ERROR
Definition: my_base.h:1143
ha_storage_media
Definition: my_base.h:116
@ HA_SM_DEFAULT
Definition: my_base.h:117
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:149
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1105
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
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:50
size_t size(const char *const c)
Definition: base64.h:46
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:2894
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:475
enum_stats_auto_recalc
Definition: handler.h:3201
row_type
Definition: handler.h:684
void free_blobs(TABLE *table)
Definition: table.cc:3389
LEX_CSTRING SLOW_LOG_NAME
Definition: table.cc:153
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:7364
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:668
enum_open_type
Type of table which can be open for an element of table list.
Definition: table.h:2843
@ OT_TEMPORARY_OR_BASE
Definition: table.h:2844
@ OT_TEMPORARY_ONLY
Definition: table.h:2845
@ OT_BASE_ONLY
Definition: table.h:2846
static my_bitmap_map * tmp_use_all_columns(TABLE *table, MY_BITMAP *bitmap)
Definition: table.h:4231
int64 query_id_t
Definition: table.h:143
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:2589
static void tmp_restore_column_map(MY_BITMAP *bitmap, my_bitmap_map *old)
Definition: table.h:4238
static void empty_record(TABLE *table)
Definition: table.h:2524
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:8320
static my_bitmap_map * dbug_tmp_use_all_columns(TABLE *table, MY_BITMAP *bitmap)
Definition: table.h:4245
char * fn_rext(char *name)
Returns pointer to '.frm' extension of the file name.
Definition: table.cc:307
bool is_simple_order(ORDER *order)
Test if the order list consists of simple field expressions.
Definition: table.cc:7207
LEX_CSTRING MYSQL_SCHEMA_NAME
Definition: table.cc:144
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:2832
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:2811
bool is_user_table(TABLE *table)
return true if the table was created explicitly.
Definition: table.h:4435
bool check_column_name(const char *name)
Definition: table.cc:3750
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:8307
void update_create_info_from_table(HA_CREATE_INFO *info, TABLE *form)
Definition: table.cc:3556
enum_view_algorithm
Strategy for how to process a view or derived table (merge or materialization)
Definition: table.h:2580
@ VIEW_ALGORITHM_TEMPTABLE
Definition: table.h:2582
@ VIEW_ALGORITHM_UNDEFINED
Definition: table.h:2581
@ VIEW_ALGORITHM_MERGE
Definition: table.h:2583
Mem_root_array_YY< LEX_CSTRING > Create_col_name_list
Definition: table.h:141
LEX_CSTRING MI_INFO_NAME
Definition: table.cc:159
bool is_infoschema_db(const char *name, size_t len)
Definition: table.h:4398
bool update_generated_read_fields(uchar *buf, TABLE *table, uint active_index=MAX_KEY)
Evaluate necessary virtual generated columns.
Definition: table.cc:7302
bool is_perfschema_db(const char *name, size_t len)
Definition: table.h:4408
Ident_name_check
Enumerate possible status of a identifier name while determining its validity.
Definition: table.h:193
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:3684
LEX_CSTRING GENERAL_LOG_NAME
Definition: table.cc:150
const uchar * get_field_name(const uchar *arg, size_t *length)
LEX_CSTRING WORKER_INFO_NAME
Definition: table.cc:162
tmp_table_type
Definition: table.h:413
@ TRANSACTIONAL_TMP_TABLE
Definition: table.h:416
@ NON_TRANSACTIONAL_TMP_TABLE
Definition: table.h:415
@ INTERNAL_TMP_TABLE
Definition: table.h:417
@ NO_TMP_TABLE
Definition: table.h:414
@ SYSTEM_TMP_TABLE
Definition: table.h:418
int closefrm(TABLE *table, bool free_share)
Free information allocated by openfrm.
Definition: table.cc:3347
enum_table_category
Category of table found in the table share.
Definition: table.h:424
@ TABLE_CATEGORY_ACL_TABLE
A ACL metadata table.
Definition: table.h:592
@ TABLE_UNKNOWN_CATEGORY
Unknown value.
Definition: table.h:428
@ TABLE_CATEGORY_USER
User table.
Definition: table.h:463
@ TABLE_CATEGORY_RPL_INFO
Replication Information Tables.
Definition: table.h:560
@ TABLE_CATEGORY_INFORMATION
Information schema tables.
Definition: table.h:497
@ TABLE_CATEGORY_GTID
Gtid Table.
Definition: table.h:577
@ TABLE_CATEGORY_DICTIONARY
A data dictionary table.
Definition: table.h:585
@ TABLE_CATEGORY_PERFORMANCE
Performance schema tables.
Definition: table.h:541
@ TABLE_CATEGORY_LOG
Log tables.
Definition: table.h:519
@ TABLE_CATEGORY_SYSTEM
System table, maintained by the server.
Definition: table.h:475
@ TABLE_CATEGORY_TEMPORARY
Temporary table.
Definition: table.h:453
bool is_temporary_table(const Table_ref *tl)
Check if a Table_ref instance represents a pre-opened temporary table.
Definition: table.h:4461
enum_table_ref_type
Enumerate possible types of a table from re-execution standpoint.
Definition: table.h:180
@ TABLE_REF_VIEW
Definition: table.h:183
@ TABLE_REF_BASE_TABLE
Definition: table.h:184
@ TABLE_REF_I_S_TABLE
Definition: table.h:185
@ TABLE_REF_TMP_TABLE
Definition: table.h:186
@ TABLE_REF_NULL
Initial value set by the parser.
Definition: table.h:182
#define STATUS_DELETED
Reserved for use by multi-table delete. Means the row has been deleted.
Definition: table.h:1409
TABLE_CATEGORY get_table_category(const LEX_CSTRING &db, const LEX_CSTRING &name)
Definition: table.cc:313
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:818
bool can_call_position(const TABLE *table)
Definition: table.h:4589
#define STATUS_UPDATED
Reserved for use by multi-table update. Means the row has been updated.
Definition: table.h:1402
#define tmp_file_prefix
Prefix for tmp tables.
Definition: table.h:160
Lex_acl_attrib_udyn
This is generic enum.
Definition: table.h:2651
static const uint MYSQL_SCHEMA_DD_ID
Definition: table.h:4387
Bitmap< MAX_FIELDS > Field_map
Definition: table.h:1415
index_hint_type
Definition: table.h:1412
@ INDEX_HINT_FORCE
Definition: table.h:1412
@ INDEX_HINT_IGNORE
Definition: table.h:1412
@ INDEX_HINT_USE
Definition: table.h:1412
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:8213
void append_unescaped(String *res, const char *pos, size_t length)
Store an SQL quoted string.
Definition: table.cc:3519
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:3723
char * get_field(MEM_ROOT *mem, Field *field)
Allocate string field in MEM_ROOT and return it as NULL-terminated string.
Definition: table.cc:3618
LEX_CSTRING MYSQL_TABLESPACE_NAME
Definition: table.cc:147
static const uint MYSQL_TABLESPACE_DD_ID
Definition: table.h:4391
#define STATUS_NOT_STARTED
Flags for TABLE::m_status (maximum 8 bits).
Definition: table.h:1394
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:740
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:469
enum enum_table_category TABLE_CATEGORY
Definition: table.h:594
LEX_CSTRING INFORMATION_SCHEMA_NAME
Definition: table.cc:137
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:6510
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:4281
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:7222
#define PLACEHOLDER_TABLE_ROW_ESTIMATE
Definition: table.h:163
void free_blob_buffers_and_reset(TABLE *table, uint32 size)
Reclaims temporary blob storage which is bigger than a threshold.
Definition: table.cc:3410
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:2719
#define STATUS_NOT_FOUND
Means we were searching for a row and didn't find it.
Definition: table.h:1400
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:2888
LEX_CSTRING PERFORMANCE_SCHEMA_DB_NAME
Definition: table.cc:140
#define STATUS_NULL_ROW
Means that table->null_row is set.
Definition: table.h:1407
ulong refresh_version
Definition: mysqld.cc:1380
static void dbug_tmp_restore_column_map(MY_BITMAP *bitmap, my_bitmap_map *old)
Definition: table.h:4256
#define restore_record(A, B)
Definition: table.h:155
int set_zone(int nr, int min_zone, int max_zone)
Definition: table.cc:3501
Ident_name_check check_db_name(const char *name, size_t length)
Check if database name is valid.
Definition: table.cc:3648
int rename_file_ext(const char *from, const char *to, const char *ext)
Definition: table.cc:3575
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:378
void free_table_share(TABLE_SHARE *share)
Free table share and memory used by it.
Definition: table.cc:609
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:4426
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:521
#define tmp_file_prefix_length
Definition: table.h:161
LEX_CSTRING RLI_INFO_NAME
Definition: table.cc:156
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:109
enum_mark_columns
Definition: sql_const.h:232
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:100
case opt name
Definition: sslopt-case.h:29
Access paths are a query planning structure that correspond 1:1 to iterators, in that an access path ...
Definition: access_path.h:227
Definition: m_ctype.h:421
Definition: item_cmpfunc.h:2726
Struct that describes an expression selected from a derived table or view.
Definition: table.h:2606
Item * item
Points to an item that represents the expression.
Definition: table.h:2611
const char * name
Name of selected expression.
Definition: table.h:2613
The current state of the privilege checking process for the current user, SQL statement and SQL objec...
Definition: table.h:372
GRANT_INTERNAL_INFO m_internal
The grant state for internal tables.
Definition: table.h:410
GRANT_INFO()
Definition: table.cc:283
Access_bitmask privilege
The set of privileges that the current user has fulfilled for a certain host, database,...
Definition: table.h:408
GRANT_TABLE * grant_table
A copy of the privilege information regarding the current host, database, object and user.
Definition: table.h:380
uint version
Used for cache invalidation when caching privilege information.
Definition: table.h:396
State information for internal tables grants.
Definition: table.h:349
bool m_table_lookup_done
True if the internal lookup by table name was done.
Definition: table.h:355
const ACL_internal_table_access * m_table_access
Cached internal table access.
Definition: table.h:357
bool m_schema_lookup_done
True if the internal lookup by schema name was done.
Definition: table.h:351
const ACL_internal_schema_access * m_schema_access
Cached internal schema access.
Definition: table.h:353
Struct to hold information about the table that should be created.
Definition: handler.h:3210
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:695
char name[NAME_CHAR_LEN]
Definition: table.h:696
bool use_default_password_lifetime
Definition: table.h:2726
bool update_password_expired_column
Definition: table.h:2725
bool update_failed_login_attempts
Definition: table.h:2737
uint32 password_reuse_interval
Definition: table.h:2733
bool use_default_password_reuse_interval
Definition: table.h:2734
Lex_acl_attrib_udyn update_password_require_current
Definition: table.h:2741
uint failed_login_attempts
Definition: table.h:2736
bool update_password_reuse_interval
Definition: table.h:2735
bool update_password_history
Definition: table.h:2732
int password_lock_time
Definition: table.h:2738
bool update_account_locked_column
Definition: table.h:2728
bool update_password_expired_fields
Definition: table.h:2724
bool use_default_password_history
Definition: table.h:2731
bool update_password_lock_time
Definition: table.h:2739
bool account_locked
Definition: table.h:2729
void cleanup()
Definition: table.h:2742
uint16 expire_after_days
Definition: table.h:2727
uint32 password_history_length
Definition: table.h:2730
bool modify_factor
Definition: table.h:2680
LEX_CSTRING generated_password
Definition: table.h:2661
LEX_CSTRING auth
Definition: table.h:2660
bool uses_identified_with_clause
Definition: table.h:2673
bool uses_authentication_string_clause
Definition: table.h:2672
bool finish_registration
Definition: table.h:2693
LEX_CSTRING plugin
Definition: table.h:2659
LEX_CSTRING client_plugin
Definition: table.h:2663
void copy(LEX_MFA *m, MEM_ROOT *alloc)
Definition: table.cc:7617
bool uses_identified_by_clause
Definition: table.h:2671
bool drop_factor
Definition: table.h:2682
bool init_registration
Definition: table.h:2691
uint nth_factor
Definition: table.h:2664
bool requires_registration
Definition: table.h:2687
LEX_CSTRING challenge_response
Definition: table.h:2662
bool add_factor
Definition: table.h:2678
bool has_password_generator
Definition: table.h:2674
LEX_MFA()
Definition: table.h:2695
bool unregister
Definition: table.h:2689
void reset()
Definition: table.h:2696
bool passwordless
Definition: table.h:2676
bool retain_current_password
Definition: table.h:2772
LEX_ALTER alter_status
Definition: table.h:2774
List< LEX_MFA > mfa_list
Definition: table.h:2777
bool uses_replace_clause
Definition: table.h:2771
LEX_CSTRING host
Definition: table.h:2769
static LEX_USER * alloc(THD *thd)
Definition: table.cc:7653
void init()
Definition: table.h:2780
LEX_CSTRING current_auth
Definition: table.h:2770
bool with_initial_auth
Definition: table.h:2778
LEX_CSTRING user
Definition: table.h:2768
LEX_MFA first_factor_auth_info
Definition: table.h:2776
LEX_USER()
Definition: table.h:2807
bool discard_old_password
Definition: table.h:2773
bool add_mfa_identifications(LEX_MFA *factor2, LEX_MFA *factor3=nullptr)
Definition: table.cc:7660
The LEX object currently serves three different purposes:
Definition: sql_lex.h:3844
Definition: thr_lock.h:99
thr_lock_type type
Definition: thr_lock.h:100
@ TABLE
Definition: mdl.h:406
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:190
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
Instances of Name_resolution_context store the information necessary for name resolution of Items and...
Definition: item.h:415
uint32 locked
Definition: table.h:4228
char * table
Definition: table.h:4227
OPEN_TABLE_LIST * next
Definition: table.h:4226
uint32 in_use
Definition: table.h:4228
char * db
Definition: table.h:4227
const char * used_alias
Tells whether this ORDER element was referenced with an alias or with an expression in the query,...
Definition: table.h:327
char * buff
Definition: table.h:338
bool is_item_original() const
Definition: table.h:291
Item_rollup_group_item * rollup_item
Definition: table.h:316
bool in_field_list
Definition: table.h:320
Item * item_initial
The initial ordering expression.
Definition: table.h:306
ORDER * next
Definition: table.h:293
MY_BITMAP * grouping_set_info
If the query block includes non-primitive grouping, then these modifiers are represented as grouping ...
Definition: table.h:301
enum_order direction
Definition: table.h:318
Item ** item
Points at the item in the select fields.
Definition: table.h:314
table_map depend_map
Definition: table.h:339
Field * field_in_tmp_table
When GROUP BY is implemented with a temporary table (i.e.
Definition: table.h:337
table_map used
Definition: table.h:339
bool is_explicit
Definition: table.h:340
A struct that contains execution time state used for partial update of JSON columns.
Definition: table.cc:7708
int value
Definition: table.h:2551
const char * field_name
This is used as column name.
Definition: table.h:2537
enum_field_types field_type
This denotes data type for the column.
Definition: table.h:2550
const char * old_name
Definition: table.h:2561
uint open_method
Definition: table.h:2562
uint field_flags
This is used to set column attributes.
Definition: table.h:2560
uint field_length
For string-type columns, this is the maximum number of characters.
Definition: table.h:2544
int(* process_table)(THD *thd, Table_ref *tables, TABLE *table, bool res, LEX_CSTRING db_name, LEX_CSTRING table_name)
Definition: table.h:2572
int(* fill_table)(THD *thd, Table_ref *tables, Item *cond)
Definition: table.h:2569
ST_FIELD_INFO * fields_info
Definition: table.h:2567
int(* old_format)(THD *thd, ST_SCHEMA_TABLE *schema_table)
Definition: table.h:2571
bool hidden
Definition: table.h:2574
const char * table_name
Definition: table.h:2566
const TABLE_FIELD_TYPE * field
Definition: table.h:606
uint count
Definition: table.h:605
LEX_CSTRING cset
Definition: table.h:601
LEX_CSTRING name
Definition: table.h:599
LEX_CSTRING type
Definition: table.h:600
This structure is shared between different table objects.
Definition: table.h:704
ulong stored_rec_length
Definition: table.h:805
uint next_number_index
Definition: table.h:923
Key_map keys_in_use
The set of indexes that are not disabled for this table.
Definition: table.h:796
TABLE_SHARE_FOREIGN_KEY_PARENT_INFO * foreign_key_parent
Definition: table.h:1042
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:3929
Table_cache_element ** cache_element
Array of table_cache_instances pointers to elements of table caches respresenting this table in each ...
Definition: table.h:749
MEM_ROOT mem_root
Definition: table.h:730
bool is_primary_engine() const
Does this TABLE_SHARE represent a table in a primary storage engine?
Definition: table.h:1260
void destroy()
Release resources and free memory occupied by the table share.
Definition: table.cc:543
TABLE_SHARE_FOREIGN_KEY_INFO * foreign_key
Definition: table.h:1040
bool is_secondary_engine() const
Does this TABLE_SHARE represent a table in a secondary storage engine?
Definition: table.h:1263
uint stats_sample_pages
Definition: table.h:842
handlerton * db_type() const
Definition: table.h:810
Table_histograms_collection * m_histograms
Definition: table.h:725
LEX_STRING comment
Definition: table.h:758
Handler_share * ha_share
Main handler's share.
Definition: table.h:1005
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:735
enum_stats_auto_recalc stats_auto_recalc
Definition: table.h:845
const char * tablespace
Definition: table.h:955
partition_info * m_part_info
Partition meta data.
Definition: table.h:975
LEX_STRING compress
Definition: table.h:759
const TABLE_FIELD_DEF * table_field_def_cache
Cache the checked structure of this table.
Definition: table.h:1002
uint column_bitmap_size
Definition: table.h:927
ulong mysql_version
Definition: table.h:803
uint max_tmp_key_parts
For materialized derived tables: allocated size of base_key_parts array of all TABLE objects.
Definition: table.h:883
uint total_key_length
Definition: table.h:857
TYPELIB keynames
Definition: table.h:737
uchar * default_values
Definition: table.h:757
LEX_STRING encrypt_type
Definition: table.h:760
PSI_table_share * m_psi
Instrumentation for this table share.
Definition: table.h:1008
bool is_missing_primary_key() const
Determine if the table is missing a PRIMARY KEY.
Definition: table.h:1207
bool db_low_byte_first
Definition: table.h:933
Schema_read_only
Schema's read only mode - ON (true) or OFF (false).
Definition: table.h:1066
LEX_CSTRING table_cache_key
Definition: table.h:781
unsigned int m_ref_count
How many TABLE objects use this TABLE_SHARE.
Definition: table.h:1278
unsigned long version() const
Returns the version of this TABLE_SHARE.
Definition: table.h:1117
uint max_unique_length
Definition: table.h:856
tmp_table_type tmp_table
Definition: table.h:824
unsigned long m_version
TABLE_SHARE version, if changed the TABLE_SHARE must be reopened.
Definition: table.h:1285
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:6054
int cached_row_logging_check
Definition: table.h:945
ulong reclength
Definition: table.h:804
uint varchar_fields
Definition: table.h:869
uint next_number_keypart
Definition: table.h:925
bool secondary_load
Secondary engine load status.
Definition: table.h:765
uint tmp_handler_count
Only for internal temporary tables.
Definition: table.h:831
Field ** field
Definition: table.h:752
ulong avg_row_length
Definition: table.h:802
plugin_ref db_plugin
Definition: table.h:809
LEX_CSTRING table_name
Definition: table.h:783
const dd::View * view_object
View object holding view definition read from DD.
Definition: table.h:1020
uint db_create_options
Bitmap with flags representing some of table options/attributes.
Definition: table.h:909
uint rec_buff_length
Definition: table.h:850
uint blob_fields
Definition: table.h:868
uint max_tmp_keys
For materialized derived tables: allocated size of key_info array.
Definition: table.h:878
LEX_STRING connect_string
Definition: table.h:786
Field ** found_next_number_field
Definition: table.h:753
ha_rows min_rows
Definition: table.h:801
bool is_referenced_by_foreign_key() const
Returns whether this table is referenced by a foreign key.
Definition: table.h:1274
uint foreign_keys
Arrays with descriptions of foreign keys in which this table participates as child or parent.
Definition: table.h:1039
Schema_read_only schema_read_only
Definition: table.h:1067
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:4023
uint fields
Definition: table.h:849
uint tmp_open_count
Only for internal temporary tables.
Definition: table.h:837
Key_name * key_names
Array of names for generated keys, used for materialized derived tables.
Definition: table.h:888
Key_map keys_for_keyread
Definition: table.h:800
char * partition_info_str
Storing the full partitioning clause (PARTITION BY ...) which is used when creating new partition_inf...
Definition: table.h:989
TABLE_SHARE(unsigned long version, bool secondary)
Create a new TABLE_SHARE with the given version number.
Definition: table.h:713
uint null_bytes
Definition: table.h:848
bool system
Definition: table.h:932
bool is_view
Definition: table.h:935
ulonglong get_table_ref_version() const
Return a table metadata version.
Definition: table.cc:4096
uint rowid_field_offset
Definition: table.h:919
uint max_key_length
Definition: table.h:855
ulong * base_rec_per_key
Records per key array, used for materialized derived tables.
Definition: table.h:894
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:1269
List< Trigger > * triggers
List of trigger descriptions for the table loaded from the data-dictionary.
Definition: table.h:1056
bool is_distinct
Whether this is a temporary table that already has a UNIQUE index (removing duplicate rows on insert)...
Definition: table.h:865
dd::Table * tmp_table_def
Data-dictionary object describing explicit temporary table represented by this share.
Definition: table.h:1028
TABLE_SHARE * next
Definition: table.h:740
LEX_STRING path
Definition: table.h:784
bool m_open_in_progress
Definition: table.h:936
uint next_number_key_offset
Definition: table.h:924
uint keys
Definition: table.h:851
Key_map visible_indexes
The set of visible and enabled indexes for this table.
Definition: table.h:799
uint foreign_key_parents
Definition: table.h:1041
bool has_old_version() const
Is this table share being expelled from the table definition cache?
Definition: table.h:1127
mysql_mutex_t LOCK_ha_data
Definition: table.h:739
Wait_for_flush_list m_flush_tickets
List of tickets representing threads waiting for the share to be flushed.
Definition: table.h:1013
void clear_version()
Set the version of this TABLE_SHARE to zero.
Definition: table.cc:532
uint gen_def_field_count
Number of fields having the default value generated.
Definition: table.h:931
MY_BITMAP all_set
Definition: table.h:770
unsigned int ref_count() const
How many TABLE objects use this TABLE_SHARE.
Definition: table.h:1233
uint last_null_bit_pos
Definition: table.h:848
TABLE_CATEGORY table_category
Category of this table.
Definition: table.h:728
bool error
Definition: table.h:926
unsigned int decrement_ref_count()
Decrement the reference count by one.
Definition: table.h:1252
const CHARSET_INFO * table_charset
Definition: table.h:767
unsigned int increment_ref_count()
Increment the reference count by one.
Definition: table.h:1242
mysql::binlog::event::Table_id table_map_id
Definition: table.h:937
bool auto_partitioned
Filled in when reading from frm.
Definition: table.h:982
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:1109
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:1083
ulonglong autoextend_size
Definition: table.h:807
uint primary_key
Definition: table.h:922
ha_storage_media default_storage_media
Definition: table.h:952
rec_per_key_t * base_rec_per_key_float
Records per key array, float rep., used for materialized derived tables.
Definition: table.h:900
bool m_secondary_engine
Does this TABLE_SHARE represent a table in a secondary storage engine?
Definition: table.h:1289
std::uint32_t key_block_size
Definition: table.h:841
bool crashed
Definition: table.h:934
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:506
LEX_CSTRING normalized_path
Definition: table.h:785
uint key_parts
Definition: table.h:852
uint vfields
Number of generated fields.
Definition: table.h:929
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:1135
uint db_options_in_use
Bitmap with flags representing some of table options/attributes which are in use by storage engine.
Definition: table.h:918
ha_rows max_rows
Definition: table.h:801
ulonglong get_table_def_version() const
Definition: table.h:1114
TYPELIB * intervals
Definition: table.h:738
uint first_unused_tmp_key
For materialized derived tables;.
Definition: table.h:874
TABLE_SHARE ** prev
Definition: table.h:740
uint null_fields
Definition: table.h:867
LEX_CSTRING secondary_engine
Secondary storage engine.
Definition: table.h:763
KEY * key_info
Definition: table.h:754
uint partition_info_str_len
Definition: table.h:990
LEX_CSTRING db
Definition: table.h:782
LEX_CSTRING engine_attribute
Definition: table.h:788
LEX_CSTRING secondary_engine_attribute
Definition: table.h:789
uint * blob_field
Definition: table.h:755
enum row_type real_row_type
Real row format used for the table by the storage engine.
Definition: table.h:823
Sql_check_constraint_share_list * check_constraint_share_list
Definition: table.h:1045
Query_block * owner_of_possible_tmp_keys
For materialized derived tables;.
Definition: table.h:1031
void mark_columns_used_by_index(uint index)
Definition: table.cc:5508
bool materialized
For a materializable derived or SJ table: true if has been materialized.
Definition: table.h:1920
void mark_generated_columns(bool is_update)
Update the write/read_set for generated columns when doing update and insert operation.
Definition: table.cc:6240
class QEP_TAB * qep_tab
Definition: table.h:1924
bool m_invalid_dict
This TABLE object is invalid and cannot be reused.
Definition: table.h:1900
query_id_t query_id
Definition: table.h:1772
bool force_index_order
Flag set when the statement contains FORCE INDEX FOR ORDER BY See Table_ref::process_index_hints().
Definition: table.h:1834
void column_bitmaps_set_no_signal(MY_BITMAP *read_set_arg, MY_BITMAP *write_set_arg)
Definition: table.h:1998
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:5676
const char * alias
alias or table name
Definition: table.h:1673
partition_info * part_info
Definition: table.h:1959
uint8 m_status
Definition: table.h:1812
bool key_read
If set, the optimizer has found that row retrieval should access index tree only.
Definition: table.h:1849
bool no_replicate
If set, indicate that the table is not replicated by the server.
Definition: table.h:1858
class JOIN_TAB * join_tab
Definition: table.h:1923
void set_no_row()
Set status for row buffer: contains no row.
Definition: table.h:2131
void mark_columns_needed_for_insert(THD *thd)
Definition: table.cc:6184
Field ** vfield
Pointer to generated columns.
Definition: table.h:1542
void clear_column_bitmaps(void)
Definition: table.cc:5408
uint tmp_table_seq_id
Internal tmp table sequential number.
Definition: table.h:1973
TABLE ** cache_prev
Definition: table.h:1434
Key_map covering_keys
Definition: table.h:1498
uchar * null_flags
Pointer to the null flags of record[0].
Definition: table.h:1674
Key_map keys_in_use_for_group_by
Definition: table.h:1529
Key_map keys_in_use_for_query
Definition: table.h:1527
Field_longlong * set_counter()
Definition: table.h:1660
void set_storage_handler(handler *file_arg)
Set storage handler for temporary table.
Definition: table.h:2061
bool has_null_row() const
Definition: table.h:2184
TABLE ** triggers_lru_prev
Definition: table.h:1446
Record_buffer m_record_buffer
Buffer for use in multi-row reads. Initially empty.
Definition: table.h:1486
void set_deleted()
Set the contents of table to be "deleted", ie "not created", after having deleted the contents.
Definition: table.h:2081
Set_operator_type m_set_op_type
Holds the set operation type.
Definition: table.h:1609
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:6171
void use_all_columns()
Definition: table.h:2003
bool has_updated_row() const
Definition: table.h:2187
TABLE * cache_next
Links for the lists of used/unused TABLE objects for the particular table in the specific instance of...
Definition: table.h:1434
Set_operator_type set_op_type()
Returns the set operation type.
Definition: table.h:1624
void blobs_need_not_keep_old_value()
Virtual fields of type BLOB have a flag m_keep_old_value.
Definition: table.cc:8236
Table_ref * pos_in_table_list
Definition: table.h:1669
void set_set_op(Field_longlong *set_counter, bool except, bool distinct)
Initialize the set counter field pointer and the type of set operation other than UNION*.
Definition: table.h:1651
ORDER * group
Definition: table.h:1672
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:7829
void set_use_hash_map(bool use_hash_map)
Definition: table.h:1617
void mark_columns_per_binlog_row_image(THD *thd)
Definition: table.cc:5748
ha_rows quick_condition_rows
Definition: table.h:1794
THD * in_use
The current session using this table object.
Definition: table.h:1475
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:8064
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:1752
void mark_columns_needed_for_delete(THD *thd)
Definition: table.cc:5599
ha_rows quick_rows[MAX_KEY]
Definition: table.h:1778
thr_lock_type lock_type
Definition: table.h:1925
bool null_row
Definition: table.h:1819
uint lock_data_start
Definition: table.h:1797
bool const_table
Definition: table.h:1841
MY_BITMAP read_set_internal
A bitmap of fields that are explicitly referenced by the query.
Definition: table.h:1739
bool is_marked_for_partial_update(const Field *field) const
Has this column been marked for partial update?
Definition: table.cc:7823
bool force_index_group
Flag set when the statement contains FORCE INDEX FOR GROUP BY See Table_ref::process_index_hints().
Definition: table.h:1840
bool has_storage_handler() const
Definition: table.h:2058
bool open_by_handler
Definition: table.h:1860
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:4288
Table_ref * pos_in_locked_tables
Definition: table.h:1671
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:7811
void set_keyread(bool flag)
Definition: table.cc:6160
bool index_contains_some_virtual_gcol(uint index_no) const
Check whether the given index has a virtual generated columns.
Definition: table.h:2045
uint db_stat
Definition: table.h:1799
bool is_logical_diff_enabled(const Field *field) const
Is partial update using logical diffs enabled on this JSON column?
Definition: table.cc:8042
bool has_invalid_dict() const
Definition: table.h:2016
bool has_invalid_stats()
Definition: table.h:2021
uchar * insert_values
Definition: table.h:1483
ptrdiff_t default_values_offset() const
Definition: table.h:2053
uchar * record[2]
Definition: table.h:1480
void invalidate_dict()
Definition: table.cc:8283
void mark_auto_increment_column(void)
Mark auto-increment fields as used fields in both read and write maps.
Definition: table.cc:5568
bool alias_name_used
Definition: table.h:1878
bool fill_item_list(mem_root_deque< Item * > *item_list) const
Create Item_field for each column in the table.
Definition: table.cc:4345
bool impossible_range
Definition: table.h:1931
bool is_binary_diff_enabled(const Field *field) const
Is partial update using binary diffs enabled on this JSON column?
Definition: table.cc:8036
void invalidate_stats()
Definition: table.cc:8294
Cost_model_table m_cost_model
Cost model object for operations on this table.
Definition: table.h:1966
bool should_binlog_drop_if_temp_flag
This flag decides whether or not we should log the drop temporary table command.
Definition: table.h:2293
void cleanup_value_generator_items()
Clean any state in items associated with generated columns to be ready for the next statement.
Definition: table.cc:4314
bool m_deduplicate_with_hash_map
If false, any de-duplication happens via an index on this table (e.g.
Definition: table.h:1591
Field_longlong * m_set_counter
The set counter.
Definition: table.h:1578
void init_cost_model(const Cost_model_server *cost_model_server)
Initialize the optimizer cost model.
Definition: table.h:2218
bool not_exists_optimize
Definition: table.h:1926
bool force_index
Definition: table.h:1828
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:4123
bool is_except() const
Definition: table.h:1637
MY_BITMAP * read_set
The read set contains the set of columns that the execution engine needs to process the query.
Definition: table.h:1721
bool should_binlog_drop_if_temp(void) const
Definition: table.cc:8251
bool get_fields_in_item_tree
Definition: table.h:1879
uint visible_field_count() const
Definition: table.h:2028
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:7920
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:6300
int current_lock
Definition: table.h:1800
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:6077
uint quick_n_ranges[MAX_KEY]
Definition: table.h:1784
TABLE * next
Definition: table.h:1424
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:7925
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:1909
bool empty_result_table()
Empties internal temporary table (deletes rows, closes scan)
Definition: table.cc:8255
void cleanup_partial_update()
Clean up state used for partial update of JSON columns.
Definition: table.cc:7890
uint lock_position
Definition: table.h:1796
Key_map quick_keys
Definition: table.h:1499
void restore_null_flags()
Restore the NULL flags of the current row from the designated buffer.
Definition: table.h:2204
Table_trigger_dispatcher * triggers
Definition: table.h:1668
bool no_keyread
Certain statements which need the full row, set this to ban index-only access.
Definition: table.h:1854
bool is_intersect() const
Definition: table.h:1632
void set_tmp_table_seq_id(uint arg)
Definition: table.h:2247
Partial_update_info * m_partial_update_info
Object which contains execution time state used for partial update of JSON columns.
Definition: table.h:2287
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:8247
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:7384
void set_deleted_row()
Set "deleted" property for the current row.
Definition: table.h:2175
void reset_null_row()
Clear "null row" status for the current row.
Definition: table.h:2163
Field ** gen_def_fields_ptr
Pointer to fields having the default value generated.
Definition: table.h:1544
MY_BITMAP fields_for_functional_indexes
A bitmap marking the hidden generated columns that exists for functional indexes.
Definition: table.h:1463
struct TABLE::@189 reginfo
void set_not_started()
Life cycle of the row buffer is as follows:
Definition: table.h:2111
const histograms::Histogram * find_histogram(uint field_index) const
Find the histogram for the given field index.
Definition: table.cc:8076
SortingIterator * sorting_iterator
Not owned by the TABLE; used only from filesort_free_buffers().
Definition: table.h:1951
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:1585
key_part_map const_key_parts[MAX_KEY]
Definition: table.h:1781
Field ** field
Definition: table.h:1476
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:5830
MEM_ROOT mem_root
Definition: table.h:1939
void column_bitmaps_set(MY_BITMAP *read_set_arg, MY_BITMAP *write_set_arg)
Definition: table.cc:7414
bool uses_hash_map() const
Definition: table.h:1621
uint hidden_field_count
Count of hidden fields, if internal temporary table; 0 otherwise.
Definition: table.h:1478
bool is_nullable() const
Return whether table is nullable.
Definition: table.h:2086
MY_BITMAP tmp_set
Definition: table.h:1679
MDL_ticket * mdl_ticket
Definition: table.h:1962
bool has_gcol() const
Definition: table.h:2089
bool all_partitions_pruned_away
Definition: table.h:1961
MY_BITMAP def_read_set
Definition: table.h:1679
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:7896
bool setup_partial_update()
Definition: table.cc:7861
bool m_charset_conversion_is_strict
True if character set conversions are always strict.
Definition: table.h:1595
bool has_deleted_row() const
Definition: table.h:2190
bool check_read_removal(uint index)
Read removal is possible if the selected quick read method is using full unique index.
Definition: table.cc:7176
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:8030
KEY_PART_INFO * base_key_parts
Key part array for generated keys, used for materialized derived tables.
Definition: table.h:1537
bool is_started() const
Definition: table.h:2117
Set_operator_type
Definition: table.h:1597
@ SOT_EXCEPT_DISTINCT
Definition: table.h:1604
@ SOT_NONE
Definition: table.h:1598
@ SOT_UNION_ALL
Definition: table.h:1599
@ SOT_INTERSECT_ALL
Definition: table.h:1601
@ SOT_INTERSECT_DISTINCT
Definition: table.h:1602
@ SOT_UNION_DISTINCT
Definition: table.h:1600
@ SOT_EXCEPT_ALL
Definition: table.h:1603
MY_BITMAP cond_set
Definition: table.h:1688
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:5546
void reset()
Reset state of fields after optimization and execution.
Definition: table.cc:4193
MY_BITMAP pack_row_tmp_set
Definition: table.h:1679
void default_column_bitmaps()
Definition: table.h:2006
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:6134
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:7901
void set_null_row()
Set current row as "null row", for use in null-complemented outer join.
Definition: table.h:2156
handler * get_primary_handler() const
Returns the primary engine handler for the table.
Definition: table.cc:7421
Sql_table_check_constraint_list * table_check_constraint_list
Definition: table.h:1803
TABLE * triggers_lru_next
Links for the LRU list of unused TABLE objects with fully loaded triggers in the specific instance of...
Definition: table.h:1446
Key_map possible_quick_keys
Definition: table.h:1514
bool created
For tmp tables.
Definition: table.h:1916
bool has_row() const
Definition: table.h:2181
const Cost_model_table * cost_model() const
Return the cost model object for this table.
Definition: table.h:2225
Field * next_number_field
Definition: table.h:1539
void update_const_key_parts(Item *conds)
Update TABLE::const_key_parts for single table UPDATE/DELETE query.
Definition: table.cc:7146
void save_null_flags()
Save the NULL flags of the current row into the designated buffer.
Definition: table.h:2199
Field * found_next_number_field
Definition: table.h:1540
Key_map keys_in_use_for_order_by
Definition: table.h:1531
void set_row_status_from_handler(int status)
Set "row found" status from handler result.
Definition: table.h:2141
Field ** visible_field_ptr() const
Definition: table.h:2026
uchar * null_flags_saved
Saved null_flags while null_row is true.
Definition: table.h:1675
uchar * write_row_record
Definition: table.h:1481
ha_rows m_limit_rows
A priori unlimited.
Definition: table.h:1570
MY_BITMAP def_write_set
Definition: table.h:1679
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:1615
uint lock_count
Definition: table.h:1798
Field * hash_field
Field used by unique constraint.
Definition: table.h:1546
MY_BITMAP def_fields_set_during_insert
Bitmap of table fields (columns), which are explicitly set in the INSERT INTO statement.
Definition: table.h:1697
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:7796
Field * fts_doc_id_field
Definition: table.h:1665
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:1877
KEY * key_info
Definition: table.h:1532
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:4238
void set_found_row()
Set status for row buffer: contains row.
Definition: table.h:2120
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:5465
void set_nullable()
Set table as nullable, ie it is inner wrt some outer join.
Definition: table.h:2083
Blob_mem_storage * blob_storage
Initialized in Item_func_group_concat::setup for appropriate temporary table if GROUP_CONCAT is used ...
Definition: table.h:1945
void set_updated_row()
Set "updated" property for the current row.
Definition: table.h:2169
TABLE * prev
Definition: table.h:1424
void prepare_for_position(void)
Tell handler we are going to call position() and rnd_pos() later.
Definition: table.cc:5440
TABLE_SHARE * s
Definition: table.h:1422
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:7881
MY_BITMAP * m_partial_update_columns
Bitmap that tells which columns are eligible for partial update in an update statement.
Definition: table.h:2278
bool copy_blobs
Definition: table.h:1821
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:8000
bool is_distinct() const
Definition: table.h:1642
bool add_tmp_key(Field_map *key_parts, bool invisible, bool modify_share)
Add one key to a materialized derived table.
Definition: table.cc:5945
SortingIterator * duplicate_removal_iterator
Definition: table.h:1952
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:8267
bool nullable
If true, this table is inner w.r.t.
Definition: table.h:1810
Key_map merge_keys
Definition: table.h:1502
Sort_result unique_result
The result of applying a unique operation (by row ID) to the table, if done.
Definition: table.h:1958
bool is_created() const
Return true if table is instantiated, and false otherwise.
Definition: table.h:2070
uint quick_key_parts[MAX_KEY]
Definition: table.h:1783
MY_BITMAP * write_set
Definition: table.h:1723
bool no_rows
True if writes to this table should not write rows and just write keys.
Definition: table.h:1843
LEX_CSTRING referenced_table_db
Definition: table.h:671
dd::Foreign_key::enum_rule delete_rule
Definition: table.h:678
LEX_CSTRING unique_constraint_name
Name of unique key matching FK in parent table, "" if there is no unique key.
Definition: table.h:677
LEX_CSTRING * column_name
Arrays with names of referencing columns of the FK.
Definition: table.h:683
uint columns
Definition: table.h:679
dd::Foreign_key::enum_rule update_rule
Definition: table.h:678
LEX_CSTRING referenced_table_name
Definition: table.h:672
dd::Foreign_key::enum_rule delete_rule
Definition: table.h:689
dd::Foreign_key::enum_rule update_rule
Definition: table.h:689
LEX_CSTRING referencing_table_name
Definition: table.h:688
LEX_CSTRING referencing_table_db
Definition: table.h:687
handlerton is a singleton structure - one instance per storage engine - to provide access to storage ...
Definition: handler.h:2740
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.
tablesample_type
Definition: tablesample.h:27
@ UNSPECIFIED_TABLESAMPLE_TYPE
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
static void mark()
Definition: xcom_transport.cc:693