MySQL 26.7.0
Source Code Documentation
dict0dict.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1996, 2026, Oracle and/or its affiliates.
4Copyright (c) 2012, Facebook Inc.
5
6This program is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License, version 2.0, as published by the
8Free Software Foundation.
9
10This program is designed to work with certain software (including
11but not limited to OpenSSL) that is licensed under separate terms,
12as designated in a particular file or component or in included license
13documentation. The authors of MySQL hereby grant you an additional
14permission to link the program and your derivative works with the
15separately licensed software that they have either included with
16the program or referenced in the documentation.
17
18This program is distributed in the hope that it will be useful, but WITHOUT
19ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
21for more details.
22
23You should have received a copy of the GNU General Public License along with
24this program; if not, write to the Free Software Foundation, Inc.,
2551 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26
27*****************************************************************************/
28
29/** @file include/dict0dict.h
30 Data dictionary system
31
32 Created 1/8/1996 Heikki Tuuri
33 *******************************************************/
34
35#ifndef dict0dict_h
36#define dict0dict_h
37
38#include <set>
39#include <vector>
40
41#include <deque>
42#include "data0data.h"
43#include "data0type.h"
44#include "dict/dict.h"
45#include "dict0mem.h"
46#include "dict0types.h"
47#include "fsp0fsp.h"
48#include "fsp0sysspace.h"
49#include "hash0hash.h"
50#include "mem0mem.h"
51#include "rem0types.h"
52#include "row0types.h"
53#include "sql/dd/object_id.h"
54#include "srv0mon.h" /* for dict0dict.ic */
55#include "sync0rw.h"
56#include "trx0types.h"
57#include "univ.i"
58#include "ut0byte.h"
59#include "ut0mem.h"
60#include "ut0new.h"
61#include "ut0rnd.h"
62
63#define dict_sys_mutex_enter() mutex_enter(&dict_sys->mutex)
64
65#define dict_sys_mutex_exit() mutex_exit(&dict_sys->mutex)
66
67#define dict_sys_mutex_own() mutex_own(&dict_sys->mutex)
68
69#define dict_sys_mutex_free() mutex_free(&dict_sys->mutex)
70/** initial memory heap size when creating a table or index object */
71constexpr uint32_t DICT_HEAP_SIZE = 100;
72
73/** SDI version. Written on Page 1 & 2 at FIL_PAGE_FILE_FLUSH_LSN offset. */
74const uint32_t SDI_VERSION = 1;
75
76/** Space id of system tablespace */
78
79/** Get the database name length in a table name.
80 @return database name length */
81[[nodiscard]] ulint dict_get_db_name_len(
82 const char *name); /*!< in: table name in the form
83 dbname '/' tablename */
84#ifndef UNIV_HOTBACKUP
85/** Frees a foreign key struct. */
87 dict_foreign_t *foreign); /*!< in, own: foreign key struct */
88/** Finds the highest [number] for foreign key constraints of the table. Looks
89 only at the >= 4.0.18-format id's, which are of the form
90 databasename/tablename_ibfk_[number].
91 @return highest number, 0 if table has no new format foreign key constraints */
93 dict_table_t *table); /*!< in: table in the dictionary
94 memory cache */
95#endif /* !UNIV_HOTBACKUP */
96/** Return the end of table name where we have removed dbname and '/'.
97 @return table name */
98[[nodiscard]] const char *dict_remove_db_name(
99 const char *name); /*!< in: table name in the
100 form dbname '/' tablename */
101
102/** Operation to perform when opening a table */
104 /** Expect the tablespace to exist. */
106 /** Drop any orphan indexes after an aborted online index creation */
108 /** Silently load the tablespace if it does not exist,
109 and do not load the definitions of incomplete indexes. */
112
113/** Decrements the count of open handles to a table.
114@param[in,out] table Table
115@param[in] dict_locked True=data dictionary locked
116@param[in] try_drop True=try to drop any orphan indexes after an aborted online
117index creation */
118void dict_table_close(dict_table_t *table, bool dict_locked, bool try_drop);
119
120/** Closes the only open handle to a table and drops a table while assuring
121 that dict_sys->mutex is held the whole time. This assures that the table
122 is not evicted after the close when the count of open handles goes to zero.
123 Because dict_sys->mutex is held, we do not need to call
124 dict_table_prevent_eviction(). */
126 trx_t *trx, /*!< in: data dictionary transaction */
127 dict_table_t *table); /*!< in/out: table */
128/** Inits the data dictionary module. */
129void dict_init();
130
131/** Closes the data dictionary module. */
132void dict_close();
133
134/** Inits the structure for persisting dynamic metadata */
135void dict_persist_init();
136
137/** Clear the structure */
138void dict_persist_close();
139
140#ifndef UNIV_HOTBACKUP
141/** Write back the dirty persistent dynamic metadata of the table
142to DDTableBuffer.
143@param[in,out] table table object */
145
146/** Read persistent dynamic metadata stored in a buffer
147@param[in] buffer buffer to read
148@param[in] size size of data in buffer
149@param[in] metadata where we store the metadata from buffer */
150void dict_table_read_dynamic_metadata(const byte *buffer, size_t size,
151 PersistentTableMetadata *metadata);
152
153/** Determine bytes of column prefix to be stored in the undo log. Please
154note that if !dict_table_has_atomic_blobs(table), no prefix
155needs to be stored in the undo log.
156@param[in] table Table.
157@param[in] col Column which index prefix is based on.
158@return bytes of column prefix to be stored in the undo log */
159[[nodiscard]] static inline ulint dict_max_field_len_store_undo(
160 dict_table_t *table, const dict_col_t *col);
161
162/** Determine maximum bytes of a virtual column need to be stored
163in the undo log.
164@param[in] table dict_table_t for the table
165@param[in] col_no virtual column number
166@return maximum bytes of virtual column to be stored in the undo log */
168 ulint col_no);
169
170#endif /* !UNIV_HOTBACKUP */
171/** Gets the column number.
172 @return col->ind, table column position (starting from 0) */
173[[nodiscard]] static inline ulint dict_col_get_no(
174 const dict_col_t *col); /*!< in: column */
175/** Gets the column position in the clustered index.
176@param[in] col Table column.
177@param[in] clust_index Clustered index. */
178[[nodiscard]] static inline ulint dict_col_get_clust_pos(
179 const dict_col_t *col, const dict_index_t *clust_index);
180
181#ifndef UNIV_HOTBACKUP
182/** Gets the column position in the given index.
183@param[in] col table column
184@param[in] index index to be searched for column
185@return position of column in the given index. */
186[[nodiscard]] static inline ulint dict_col_get_index_pos(
187 const dict_col_t *col, const dict_index_t *index) MY_ATTRIBUTE((nonnull));
188
189/** If the given column name is reserved for InnoDB system columns, return
190 true.
191 @return true if name is reserved */
192[[nodiscard]] bool dict_col_name_is_reserved(
193 const char *name); /*!< in: column name */
194/** Acquire the autoinc lock. */
195void dict_table_autoinc_lock(dict_table_t *table); /*!< in/out: table */
196
197/** Unconditionally set the autoinc counter.
198@param[in,out] table Table
199@param[in] value Next value to assign to a row */
201
202/** Reads the next autoinc value (== autoinc counter value), 0 if not yet
203 initialized.
204 @return value for a new row, or 0 */
205[[nodiscard]] uint64_t dict_table_autoinc_read(
206 const dict_table_t *table); /*!< in: table */
207
208/** Updates the autoinc counter if the value supplied is greater than the
209 current value.
210@param[in,out] table Table
211@param[in] value Value which was assigned to a row */
213
214/** Release the autoinc lock. */
215void dict_table_autoinc_unlock(dict_table_t *table); /*!< in/out: table */
216
217/** Update the persisted autoinc counter to specified one, we should hold
218autoinc_persisted_mutex.
219@param[in,out] table table
220@param[in] autoinc set autoinc_persisted to this value */
222 uint64_t autoinc);
223
224/** Set the column position of autoinc column in clustered index for a table.
225@param[in] table table
226@param[in] pos column position in table definition */
228 ulint pos);
229
230/** Makes sure that the persisted autoinc value for the table is at least equal
231to `value`. Note that due to innodb_autoinc_preallocate the actually persisted
232value can be larger than required. Also stores the maximum of the real values
233passed to this function in table->autoinc_persisted, so that it can be persisted
234exactly if needed.
235@param[in,out] table InnoDB table object
236@param[in] value AUTOINC counter to persist
237*/
239
240/** Check if a table has an autoinc counter column.
241@param[in] table table
242@return true if there is an autoinc column in the table, otherwise false. */
244
245#endif /* !UNIV_HOTBACKUP */
246
247/** Adds system columns to a table object.
248@param[in,out] table Table
249@param[in] heap Temporary heap */
251
252#ifndef UNIV_HOTBACKUP
253/** Mark if table has big rows.
254@param[in,out] table table handler */
255void dict_table_set_big_rows(dict_table_t *table) MY_ATTRIBUTE((nonnull));
256
257/** Adds a table object to the dictionary cache.
258@param[in,out] table table
259@param[in] can_be_evicted true if can be evicted */
260void dict_table_add_to_cache(dict_table_t *table, bool can_be_evicted);
261
262/** Removes a table object from the dictionary cache. */
263void dict_table_remove_from_cache(dict_table_t *table); /*!< in, own: table */
264
265/** Try to invalidate an entry from the dict cache, for a partitioned table,
266if any table found.
267@param[in] name Table name */
269
270#ifdef UNIV_DEBUG
271/** Removes a table object from the dictionary cache, for debug purpose
272@param[in,out] table table object
273@param[in] lru_evict true if table being evicted to make room
274 in the table LRU list */
276#endif /* UNIV_DEBUG */
277
278/** Renames a table object.
279 @return true if success */
281 dict_table_t *table, /*!< in/out: table */
282 const char *new_name, /*!< in: new name */
283 bool rename_also_foreigns);
284/*!< in: in ALTER TABLE we want
285to preserve the original table name
286in constraints which reference it */
287
288/** Removes an index from the dictionary cache.
289@param[in,out] table table whose index to remove
290@param[in,out] index index to remove, this object is destroyed and must not
291be accessed by the caller afterwards */
293
294/** Gathers ids of all tables in cache at the moment.
295@return ids of all tables */
296std::vector<table_id_t> dict_get_all_table_ids();
297
298/** Change the id of a table object in the dictionary cache. This is used in
299 DISCARD TABLESPACE. */
301 dict_table_t *table, /*!< in/out: table object already in cache */
302 table_id_t new_id); /*!< in: new id to set */
303/** Removes a foreign constraint struct from the dictionary cache. */
305 dict_foreign_t *foreign); /*!< in, own: foreign constraint */
306/** Adds a foreign key constraint object to the dictionary cache. May free
307 the object if there already is an object with the same identifier in.
308 At least one of foreign table or referenced table must already be in
309 the dictionary cache!
310 @return DB_SUCCESS or error code */
312 dict_foreign_t *foreign,
313 /*!< in, own: foreign key constraint */
314 const char **col_names,
315 /*!< in: column names, or NULL to use
316 foreign->foreign_table->col_names */
317 bool check_charsets,
318 /*!< in: whether to check charset
319 compatibility */
320 bool can_free_fk,
321 /*!< in: whether free existing FK */
322 dict_err_ignore_t ignore_err);
323/*!< in: error to be ignored */
324/** Checks if a table is referenced by foreign keys.
325 @return true if table is referenced by a foreign key */
327 const dict_table_t *table); /*!< in: InnoDB table */
328/** Replace the index passed in with another equivalent index in the
329 foreign key lists of the table.
330 @return whether all replacements were found */
331[[nodiscard]] bool dict_foreign_replace_index(
332 dict_table_t *table, /*!< in/out: table */
333 const char **col_names,
334 /*!< in: column names, or NULL
335 to use table->col_names */
336 const dict_index_t *index); /*!< in: index to be replaced */
337#endif /* !UNIV_HOTBACKUP */
338
339/** Tries to find an index whose first fields are the columns in the array,
340 in the same order and is not marked for deletion and is not the same
341 as types_idx.
342 @return matching index, NULL if not found */
344 const dict_table_t *table, /*!< in: table */
345 const char **col_names,
346 /*!< in: column names, or NULL
347 to use table->col_names */
348 const char **columns, /*!< in: array of column names */
349 ulint n_cols, /*!< in: number of columns */
350 const dict_index_t *types_idx,
351 /*!< in: NULL or an index
352 whose types the column types
353 must match */
354 bool check_charsets,
355 /*!< in: whether to check
356 charsets. only has an effect
357 if types_idx != NULL */
358 ulint check_null);
359/*!< in: nonzero if none of
360the columns must be declared
361NOT NULL */
362
363/** Returns a virtual column's name.
364@param[in] table target table
365@param[in] col_nr virtual column number (nth virtual column)
366@return column name or NULL if column number out of range. */
367const char *dict_table_get_v_col_name(const dict_table_t *table, ulint col_nr);
368
369/** Check if the table has a given (non_virtual) column.
370@param[in] table table object
371@param[in] col_name column name
372@param[in] col_nr column number guessed, 0 as default
373@return column number if the table has the specified column,
374otherwise table->n_def */
375ulint dict_table_has_column(const dict_table_t *table, const char *col_name,
376 ulint col_nr = 0);
377
378/** Outputs info on a foreign key of a table in a format suitable for
379 CREATE TABLE.
380@param[in] file File where to print
381@param[in] trx Transaction
382@param[in] foreign Foreign key constraint
383@param[in] add_newline Whether to add a newline */
385 dict_foreign_t *foreign,
386 bool add_newline);
387
388/** Tries to find an index whose first fields are the columns in the array,
389 in the same order and is not marked for deletion and is not the same
390 as types_idx.
391 @return matching index, NULL if not found */
392[[nodiscard]] bool dict_foreign_qualify_index(
393 const dict_table_t *table, /*!< in: table */
394 const char **col_names,
395 /*!< in: column names, or NULL
396 to use table->col_names */
397 const char **columns, /*!< in: array of column names */
398 ulint n_cols, /*!< in: number of columns */
399 const dict_index_t *index, /*!< in: index to check */
400 const dict_index_t *types_idx,
401 /*!< in: NULL or an index
402 whose types the column types
403 must match */
404 bool check_charsets,
405 /*!< in: whether to check
406 charsets. only has an effect
407 if types_idx != NULL */
408 ulint check_null);
409/*!< in: nonzero if none of
410the columns must be declared
411NOT NULL */
412
413/* Skip corrupted index */
415 while (index && index->is_corrupted()) {
416 index = index->next();
417 }
418}
419
420/* Get the next non-corrupt index */
422 index = index->next();
424}
425
426/** Check if index is auto-generated clustered index.
427@param[in] index index
428
429@return true if index is auto-generated clustered index. */
431
432/** Check whether the index is unique.
433 @return nonzero for unique index, zero for other indexes */
434[[nodiscard]] static inline ulint dict_index_is_unique(
435 const dict_index_t *index); /*!< in: index */
436/** Check whether the index is a Spatial Index.
437 @return nonzero for Spatial Index, zero for other indexes */
438[[nodiscard]] static inline ulint dict_index_is_spatial(
439 const dict_index_t *index); /*!< in: index */
440/** Check whether the index contains a virtual column.
441@param[in] index index
442@return nonzero for index on virtual column, zero for other indexes */
444/** Check whether the index is the insert buffer tree.
445 @return nonzero for insert buffer, zero for other indexes */
446[[nodiscard]] static inline ulint dict_index_is_ibuf(
447 const dict_index_t *index); /*!< in: index */
448
449/** Check whether the index consists of descending columns only.
450@param[in] index index tree
451@retval true if index has any descending column
452@retval false if index has only ascending columns */
453[[nodiscard]] static inline bool dict_index_has_desc(const dict_index_t *index);
454/** Check whether the index is a secondary index or the insert buffer tree.
455 @return nonzero for insert buffer, zero for other indexes */
456[[nodiscard]] static inline ulint dict_index_is_sec_or_ibuf(
457 const dict_index_t *index); /*!< in: index */
458
459/** Get all the FTS indexes on a table.
460@param[in] table table
461@param[out] indexes all FTS indexes on this table
462@return number of FTS indexes */
464
466
467/** Gets the number of virtual columns in a table in the dictionary cache.
468@param[in] table the table to check
469@return number of virtual columns of a table */
471
472/** Check if a table has indexed virtual columns
473@param[in] table the table to check
474@return true is the table has indexed virtual columns */
476
477#ifndef UNIV_HOTBACKUP
478/** Gets the approximately estimated number of rows in the table.
479 @return estimated number of rows */
480[[nodiscard]] static inline uint64_t dict_table_get_n_rows(
481 const dict_table_t *table); /*!< in: table */
482/** Increment the number of rows in the table by one.
483 Notice that this operation is not protected by any latch, the number is
484 approximate. */
485static inline void dict_table_n_rows_inc(
486 dict_table_t *table); /*!< in/out: table */
487/** Decrement the number of rows in the table by one.
488 Notice that this operation is not protected by any latch, the number is
489 approximate. */
490static inline void dict_table_n_rows_dec(
491 dict_table_t *table); /*!< in/out: table */
492#endif /* !UNIV_HOTBACKUP */
493
494/** Get nth virtual column according to its original MySQL table position
495@param[in] table target table
496@param[in] col_nr column number in MySQL Table definition
497@return dict_v_col_t ptr */
499 ulint col_nr);
500
501#ifdef UNIV_DEBUG
502/** Gets the nth virtual column of a table.
503@param[in] table table
504@param[in] pos position of virtual column
505@return pointer to virtual column object */
507 ulint pos);
508
509#else /* UNIV_DEBUG */
510/* Get nth virtual columns */
511#define dict_table_get_nth_v_col(table, pos) ((table)->v_cols + (pos))
512#endif /* UNIV_DEBUG */
513/** Gets the given system column number of a table.
514@param[in] table Table.
515@param[in] sys DATA_ROW_ID, ...
516@return column number */
517[[nodiscard]] static inline ulint dict_table_get_sys_col_no(
518 const dict_table_t *table, ulint sys);
519/** Check whether the table uses the compact page format.
520 @return true if table uses the compact page format */
521[[nodiscard]] static inline bool dict_table_is_comp(
522 const dict_table_t *table); /*!< in: table */
523
524/** Determine if a table uses atomic BLOBs (no locally stored prefix).
525@param[in] table InnoDB table
526@return whether BLOBs are atomic */
527[[nodiscard]] static inline bool dict_table_has_atomic_blobs(
528 const dict_table_t *table);
529
530#ifndef UNIV_HOTBACKUP
531/** Set the various values in a dict_table_t::flags pointer.
532@param[in,out] flags Pointer to a 4 byte Table Flags
533@param[in] format File Format
534@param[in] zip_ssize Zip Shift Size
535@param[in] use_data_dir Table uses DATA DIRECTORY
536@param[in] shared_space Table uses a General Shared Tablespace */
537static inline void dict_tf_set(uint32_t *flags, rec_format_t format,
538 uint32_t zip_ssize, bool use_data_dir,
539 bool shared_space);
540
541/** Initialize a dict_table_t::flags pointer.
542@param[in] compact Table uses Compact or greater
543@param[in] zip_ssize Zip Shift Size (log 2 minus 9)
544@param[in] atomic_blobs Table uses Compressed or Dynamic
545@param[in] data_dir Table uses DATA DIRECTORY
546@param[in] shared_space Table uses a General Shared Tablespace */
547static inline uint32_t dict_tf_init(bool compact, ulint zip_ssize,
548 bool atomic_blobs, bool data_dir,
549 bool shared_space);
550
551/** Convert a 32 bit integer table flags to the 32 bit FSP Flags.
552Fsp Flags are written into the tablespace header at the offset
553FSP_SPACE_FLAGS and are also stored in the fil_space_t::flags field.
554The following chart shows the translation of the low order bit.
555Other bits are the same.
556========================= Low order bit ==========================
557 | REDUNDANT | COMPACT | COMPRESSED | DYNAMIC
558dict_table_t::flags | 0 | 1 | 1 | 1
559fil_space_t::flags | 0 | 0 | 1 | 1
560==================================================================
561@param[in] table_flags dict_table_t::flags
562@return tablespace flags (fil_space_t::flags) */
563uint32_t dict_tf_to_fsp_flags(uint32_t table_flags);
564
565/** Extract the page size info from table flags.
566@param[in] flags flags
567@return a structure containing the compressed and uncompressed
568page sizes and a boolean indicating if the page is compressed. */
569static inline const page_size_t dict_tf_get_page_size(uint32_t flags);
570
571#endif /* !UNIV_HOTBACKUP */
572
573/** Determine the extent size (in pages) for the given table
574@param[in] table the table whose extent size is being
575 calculated.
576@return extent size in pages (256, 128 or 64) */
578
579/** Get the table page size.
580@param[in] table table
581@return compressed page size, or 0 if not compressed */
582[[nodiscard]] static inline const page_size_t dict_table_page_size(
583 const dict_table_t *table);
584
585#ifndef UNIV_HOTBACKUP
586/** Obtain exclusive locks on all index trees of the table. This is to prevent
587 accessing index trees while InnoDB is updating internal metadata for
588 operations such as FLUSH TABLES. */
589static inline void dict_table_x_lock_indexes(
590 dict_table_t *table); /*!< in: table */
591/** Release the exclusive locks on all index tree. */
593 dict_table_t *table); /*!< in: table */
594/** Check if the table has an FTS index.
595 @return true if table has an FTS index */
596[[nodiscard]] static inline bool dict_table_has_fts_index(
597 dict_table_t *table); /*!< in: table */
598#ifdef UNIV_DEBUG
599/** Validate no active background threads to cause purge or rollback
600 operations. */
602#endif /* UNIV_DEBUG */
603#endif /* !UNIV_HOTBACKUP */
604/** Checks if a column is in the ordering columns of the clustered index of a
605 table. Column prefixes are treated like whole columns.
606 @return true if the column, or its prefix, is in the clustered key */
607[[nodiscard]] bool dict_table_col_in_clustered_key(
608 const dict_table_t *table, /*!< in: table */
609 ulint n); /*!< in: column number */
610/** Copies types of virtual columns contained in table to tuple and sets all
611fields of the tuple to the SQL NULL value. This function should
612be called right after dtuple_create().
613@param[in,out] tuple data tuple
614@param[in] table table */
616/** Copies types of columns contained in table to tuple and sets all
617 fields of the tuple to the SQL NULL value. This function should
618 be called right after dtuple_create(). */
619void dict_table_copy_types(dtuple_t *tuple, /*!< in/out: data tuple */
620 const dict_table_t *table); /*!< in: table */
621#ifndef UNIV_HOTBACKUP
622
623/** Look up an index among already opened tables. Does not attempt to open
624tables that are not available in the dictionary cache. This behaviour is fine
625for information schema's scenarios - use dd_table_open_on_id() if you need
626to access index meta-data reliably.
627@param[in] id index identifier
628@return index or NULL if not found */
629[[nodiscard]] const dict_index_t *dict_index_find(const index_id_t &id);
630
631/** Make room in the table cache by evicting an unused table. The unused table
632 should not be part of FK relationship and currently not used in any user
633 transaction. There is no guarantee that it will remove a table.
634 @return number of tables evicted. */
636 ulint max_tables, /*!< in: max tables allowed in cache */
637 ulint pct_check); /*!< in: max percent to check */
638
639constexpr uint32_t BIG_ROW_SIZE = 1024;
640
641/** Adds an index to the dictionary cache.
642@param[in,out] table table on which the index is
643@param[in,out] index index; NOTE! The index memory
644 object is freed in this function!
645@param[in] page_no root page number of the index
646@param[in] strict true=refuse to create the index
647 if records could be too big to fit in
648 an B-tree page
649@return DB_SUCCESS, DB_TOO_BIG_RECORD, or DB_CORRUPTION */
652 page_no_t page_no, bool strict);
653
654/** Clears the virtual column's index list before index is being freed.
655@param[in] index Index being freed */
657
658/** Adds an index to the dictionary cache, with possible indexing newly
659added column.
660@param[in,out] table table on which the index is
661@param[in,out] index index; NOTE! The index memory
662 object is freed in this function!
663@param[in] add_v new virtual column that being added along with
664 an add index call
665@param[in] page_no root page number of the index
666@param[in] strict true=refuse to create the index
667 if records could be too big to fit in
668 an B-tree page
669@return DB_SUCCESS, DB_TOO_BIG_RECORD, or DB_CORRUPTION */
672 page_no_t page_no, bool strict);
673#endif /* !UNIV_HOTBACKUP */
674/** Gets the number of fields in the internal representation of an index,
675 including fields added by the dictionary system.
676 @return number of fields */
677[[nodiscard]] inline uint16_t dict_index_get_n_fields(
678 const dict_index_t *index); /*!< in: an internal
679 representation of index (in
680 the dictionary cache) */
681/** Gets the number of fields in the internal representation of an index
682 that uniquely determine the position of an index entry in the index, if
683 we do not take multiversioning into account: in the B-tree use the value
684 returned by dict_index_get_n_unique_in_tree.
685 @return number of fields */
686[[nodiscard]] inline uint16_t dict_index_get_n_unique(
687 const dict_index_t *index); /*!< in: an internal representation
688 of index (in the dictionary cache) */
689/** Gets the number of fields in the internal representation of an index
690 which uniquely determine the position of an index entry in the index, if
691 we also take multiversioning into account.
692 @return number of fields */
693[[nodiscard]] inline uint16_t dict_index_get_n_unique_in_tree(
694 const dict_index_t *index); /*!< in: an internal representation
695 of index (in the dictionary cache) */
696
697/** The number of fields in the nonleaf page of spatial index, except
698the page no field. */
699constexpr uint32_t DICT_INDEX_SPATIAL_NODEPTR_SIZE = 1;
700/**
701Gets the number of fields on nonleaf page level in the internal representation
702of an index which uniquely determine the position of an index entry in the
703index, if we also take multiversioning into account. Note, it doesn't
704include page no field.
705@param[in] index index
706@return number of fields */
707[[nodiscard]] inline uint16_t dict_index_get_n_unique_in_tree_nonleaf(
708 const dict_index_t *index);
709/** Gets the number of user-defined ordering fields in the index. In the
710 internal representation we add the row id to the ordering fields to make all
711 indexes unique, but this function returns the number of fields the user defined
712 in the index as ordering fields.
713 @return number of fields */
715 const dict_index_t *index); /*!< in: an internal representation
716 of index (in the dictionary cache) */
717/** Returns true if the index contains a column or a prefix of that column.
718@param[in] index index
719@param[in] n column number
720@param[in] is_virtual whether it is a virtual col
721@return true if contains the column or its prefix */
723 ulint n, bool is_virtual);
724/** Looks for a matching field in an index. The column has to be the same. The
725 column in index must be complete, or must contain a prefix longer than the
726 column in index2. That is, we must be able to construct the prefix in index2
727 from the prefix in index.
728 @return position in internal representation of the index;
729 ULINT_UNDEFINED if not contained */
731 const dict_index_t *index, /*!< in: index from which to search */
732 const dict_index_t *index2, /*!< in: index */
733 ulint n); /*!< in: field number in index2 */
734/** Looks for non-virtual column n position in the clustered index.
735 @return position in internal representation of the clustered index */
737 const dict_table_t *table, /*!< in: table */
738 ulint n); /*!< in: column number */
739
740/** Get the innodb column position for a non-virtual column according to
741its original MySQL table position n
742@param[in] table table
743@param[in] n MySQL column position
744@return column position in InnoDB */
746
747/** Copies types of fields contained in index to tuple.
748@param[in,out] tuple Data tuple
749@param[in] index Index
750@param[in] n_fields Number of field types to copy */
752 ulint n_fields);
753
754#ifdef UNIV_DEBUG
755/** Checks that a tuple has n_fields_cmp value in a sensible range, so that
756 no comparison can occur with the page number field in a node pointer.
757 @return true if ok */
758[[nodiscard]] bool dict_index_check_search_tuple(
759 const dict_index_t *index, /*!< in: index tree */
760 const dtuple_t *tuple); /*!< in: tuple used in a search */
761/** Whether and when to allow temporary index names */
763 /** Require all indexes to be complete. */
765 /** Allow aborted online index creation. */
767 /** Allow partial indexes to exist. */
770
771/** Check for duplicate index entries in a table [using the index name]
772@param[in] table Check for dup indexes in this table
773@param[in] check Whether and when to allow temporary index names */
775 enum check_name check);
776
777/** Check if a table is a temporary table with compressed row format,
778we should always expect false.
779@param[in] table table
780@return true if it's a compressed temporary table, false otherwise */
782#endif /* UNIV_DEBUG */
783/** Builds a node pointer out of a physical record and a page number.
784 @return own: node pointer */
786 const dict_index_t *index, /*!< in: index */
787 const rec_t *rec, /*!< in: record for which
788 to build node pointer */
789 page_no_t page_no, /*!< in: page number to
790 put in node pointer */
791 mem_heap_t *heap, /*!< in: memory heap where
792 pointer created */
793 ulint level); /*!< in: level of rec in tree:
794 0 means leaf level */
795/** Copies an initial segment of a physical record, long enough to specify an
796index entry uniquely. In case buf is nullptr or the buf_size is not enough to
797store the prefix, the new buffer will be allocated.
798@param[in] index index
799@param[in] rec record for which to copy prefix
800@param[out] n_fields number of fields copied
801@param[in,out] buf memory buffer for the copied prefix, or nullptr
802@param[in,out] buf_size buffer size, size of allocated buffer
803@return pointer to the prefix record */
805 const rec_t *rec,
806 ulint *n_fields,
807 byte **buf,
808 size_t *buf_size);
809/** Builds a typed data tuple out of a physical record.
810 @return own: data tuple */
812 dict_index_t *index, /*!< in: index */
813 rec_t *rec, /*!< in: record for which to build data tuple */
814 ulint n_fields, /*!< in: number of data fields */
815 mem_heap_t *heap); /*!< in: memory heap where tuple created */
816/** Gets the space id of the root of the index tree.
817 @return space id */
818[[nodiscard]] static inline space_id_t dict_index_get_space(
819 const dict_index_t *index); /*!< in: index */
820
821/** Sets the space id of the root of the index tree.
822@param[in,out] index index
823@param[in] space space id */
825
826/** Gets the page number of the root of the index tree.
827 @return page number */
828[[nodiscard]] static inline page_no_t dict_index_get_page(
829 const dict_index_t *tree); /*!< in: index */
830/** Gets the read-write lock of the index tree.
831 @return read-write lock */
832[[nodiscard]] static inline rw_lock_t *dict_index_get_lock(
833 dict_index_t *index); /*!< in: index */
834/** Returns free space reserved for future updates of records. This is
835 relevant only in the case of many consecutive inserts, as updates
836 which make the records bigger might fragment the index.
837 @return number of free bytes on page, reserved for updates */
839
840/* Online index creation @{ */
841/** Gets the status of online index creation.
842 @return the status */
843[[nodiscard]] static inline enum online_index_status
845 const dict_index_t *index); /*!< in: secondary index */
846
847/** Sets the status of online index creation.
848@param[in,out] index index
849@param[in] status status */
852
853/** Determines if a secondary index is being or has been created online,
854 or if the table is being rebuilt online, allowing concurrent modifications
855 to the table.
856 @retval true if the index is being or has been built online, or
857 if this is a clustered index and the table is being or has been rebuilt online
858 @retval false if the index has been created or the table has been
859 rebuilt completely */
860[[nodiscard]] static inline bool dict_index_is_online_ddl(
861 const dict_index_t *index); /*!< in: index */
862/** Calculates the minimum record length in an index. */
864 const dict_index_t *index); /*!< in: index */
865/** Reserves the dictionary system mutex for MySQL. */
867/** Releases the dictionary system mutex for MySQL. */
869
870#ifndef UNIV_HOTBACKUP
871/** Create a dict_table_t's stats latch or delay for lazy creation.
872This function is only called from either single threaded environment
873or from a thread that has not shared the table object with other threads.
874@param[in,out] table table whose stats latch to create
875@param[in] enabled if false then the latch is disabled
876and dict_table_stats_lock()/unlock() become noop on this table. */
878
879/** Create a dict_table_t's stats compute mutex or delay for lazy creation.
880This function is only called from either single threaded environment
881or from a thread that has not shared the table object with other threads.
882@param[in,out] table table whose stats compute mutex to create
883@param[in] enabled if false then the latch is disabled
884and dict_table_stats_compute_lock()/unlock() become noop on this table. */
886 bool enabled);
887
888/** Destroy a dict_table_t's stats latch.
889This function is only called from either single threaded environment
890or from a thread that has not shared the table object with other threads.
891@param[in,out] table table whose stats latch to destroy */
893
894/** Destroy a dict_table_t's stats compute mutex.
895This function is only called from either single threaded environment
896or from a thread that has not shared the table object with other threads.
897@param[in,out] table table whose stats compute mutex to destroy */
899
900/** Lock the appropriate latch to protect a given table's statistics.
901@param[in] table table whose stats to lock
902@param[in] latch_mode RW_S_LATCH or RW_X_LATCH */
904
905/** Unlock the latch that has been locked by dict_table_stats_lock().
906@param[in] table table whose stats to unlock
907@param[in] latch_mode RW_S_LATCH or RW_X_LATCH */
909
910/** Acquire table's statistics compute lock.
911@param[in] table table whose stats to lock */
913
914/** Unlock the lock locked by dict_table_stats_compute_lock().
915@param[in] table table whose stats to unlock */
917
918/** Checks if the database name in two table names is the same.
919 @return true if same db name */
920[[nodiscard]] bool dict_tables_have_same_db(
921 const char *name1, /*!< in: table name in the
922 form dbname '/' tablename */
923 const char *name2); /*!< in: table name in the
924 form dbname '/' tablename */
925/** Get an index by name.
926@param[in] table the table where to look for the index
927@param[in] name the index name to look for
928@param[in] committed true=search for committed,
929false=search for uncommitted
930@return index, NULL if does not exist */
932 const char *name,
933 bool committed = true);
934/** Get an index by name.
935@param[in] table the table where to look for the index
936@param[in] name the index name to look for
937@param[in] committed true=search for committed,
938false=search for uncommitted
939@return index, NULL if does not exist */
941 const dict_table_t *table, const char *name, bool committed = true) {
942 return (dict_table_get_index_on_name(const_cast<dict_table_t *>(table), name,
943 committed));
944}
945
946/** Check whether a column exists in an FTS index.
947@param[in] indexes Vector containing only FTS indexes
948@param[in] col_no Column number to search for.
949@param[in] is_virtual Whether it is a virtual column.
950@return ULINT_UNDEFINED if no match else the offset within the vector. */
951[[nodiscard]] static inline ulint dict_table_is_fts_column(ib_vector_t *indexes,
952 ulint col_no,
953 bool is_virtual);
954/** Prevent table eviction by moving a table to the non-LRU list from the
955 LRU list if it is not already there. */
957 dict_table_t *table); /*!< in: table to prevent eviction */
958
959/** Allow the table to be evicted by moving a table to the LRU list from
960the non-LRU list if it is not already there.
961@param[in] table InnoDB table object can be evicted */
963
964/** Move this table to non-LRU list for DDL operations if it's
965currently not there. This also prevents later opening table via DD objects,
966when the table name in InnoDB doesn't match with DD object.
967@param[in,out] table Table to put in non-LRU list */
969
970/** Move this table to LRU list after DDL operations if it was moved
971to non-LRU list
972@param[in,out] table Table to put in LRU list */
974
975/** Move a table to the non LRU end of the LRU list. */
977 dict_table_t *table); /*!< in: table to move from LRU to non-LRU */
978
979/** Move a table to the LRU end from the non LRU list.
980@param[in] table InnoDB table object */
982
983/** Move to the most recently used segment of the LRU list. */
984void dict_move_to_mru(dict_table_t *table); /*!< in: table to move to MRU */
985
986/** Maximum number of columns in a foreign key constraint. Please Note MySQL
987has a much lower limit on the number of columns allowed in a foreign key
988constraint */
989constexpr uint32_t MAX_NUM_FK_COLUMNS = 500;
990
991/* Buffers for storing detailed information about the latest foreign key
992and unique key errors */
994extern ib_mutex_t dict_foreign_err_mutex; /* mutex protecting the
995 foreign key error messages */
996#endif /* !UNIV_HOTBACKUP */
997
998/** the dictionary system */
999extern dict_sys_t *dict_sys;
1000#ifndef UNIV_HOTBACKUP
1001/** the data dictionary rw-latch protecting dict_sys */
1003
1004/** Forward declaration */
1005class DDTableBuffer;
1006#endif /* !UNIV_HOTBACKUP */
1007struct dict_persist_t;
1008
1009/** the dictionary persisting structure */
1011
1012/* Dictionary system struct */
1014#ifndef UNIV_HOTBACKUP
1015 /** mutex protecting the data dictionary; protects also the disk-based
1016 dictionary system tables; this mutex serializes CREATE TABLE and DROP TABLE,
1017 as well as reading the dictionary data for a table from system tables */
1019
1020 /** Writes the current value of the row id counter to the dictionary header
1021 file page. */
1022 virtual void dict_hdr_flush_row_id();
1023
1024 virtual ~dict_sys_t() = default;
1025#endif /* !UNIV_HOTBACKUP */
1026
1027 /** the next row id to assign; NOTE: we only update the DICT_HDR_ROW_ID header
1028 once for every DICT_HDR_ROW_ID_WRITE_MARGIN increments, which means that after
1029 crash recovery the value found in this header might be smaller than the value
1030 in some of the rows. This is why we add DICT_HDR_ROW_ID_WRITE_MARGIN to it
1031 after recovery to prevent duplicates. */
1032 std::atomic<row_id_t> row_id;
1033
1034 /** hash table of the tables, based on name */
1036
1037 /** hash table of the tables, based on id*/
1039
1040 /** varying space in bytes occupied by the data dictionary table and index
1041 objects */
1042 size_t size;
1043
1044 /** Permanent handle to mysql.innodb_table_stats */
1046 /** Permanent handle to mysql.innodb_index_stats */
1048 /** Permanent handle to mysql.innodb_ddl_log */
1050 /** Permanent handle to mysql.innodb_dynamic_metadata */
1053
1054 /** List of tables that can be evicted from the cache */
1056 /** List of tables that can't be evicted from the cache */
1058
1059 /** Iterate each table.
1060 @tparam Functor visitor
1061 @param[in,out] functor to be invoked on each table */
1062 template <typename Functor>
1063 void for_each_table(Functor &functor) {
1065
1067 const auto n_cells = hash->get_n_cells();
1068 for (ulint i = 0; i < n_cells; i++) {
1069 for (dict_table_t *table =
1070 static_cast<dict_table_t *>(hash_get_first(hash, i));
1071 table;
1072 table = static_cast<dict_table_t *>(HASH_GET_NEXT(id_hash, table))) {
1073 functor(table);
1074 }
1075 }
1076
1077 mutex_exit(&mutex);
1078 }
1079
1080 /** Check if a tablespace id is a reserved tablespace ID
1081 @param[in] space tablespace id to check
1082 @return true if a reserved tablespace id, otherwise false */
1083 static bool is_reserved(space_id_t space) {
1084 return (space >= dict_sys_t::s_reserved_space_id);
1085 }
1086
1087 /** Set of ids of DD tables */
1088 static std::set<dd::Object_id> s_dd_table_ids;
1089
1090 /** Check if a table is hardcoded. it only includes the dd tables
1091 @param[in] id table ID
1092 @retval true if the table is a persistent hard-coded table
1093 (dict_table_t::is_temporary() will not hold)
1094 @retval false if the table is not hard-coded
1095 (it can be persistent or temporary) */
1096 static bool is_dd_table_id(table_id_t id) {
1097 return (s_dd_table_ids.find(id) != s_dd_table_ids.end());
1098 }
1099
1100 /** The first ID of the redo log pseudo-tablespace */
1101 static constexpr space_id_t s_log_space_id = 0xFFFFFFF0UL;
1102
1103 /** Use maximum UINT value to indicate invalid space ID. */
1104 static constexpr space_id_t s_invalid_space_id = 0xFFFFFFFF;
1105
1106 /** The data dictionary tablespace ID. */
1107 static constexpr space_id_t s_dict_space_id = 0xFFFFFFFE;
1108
1109 /** The innodb_temporary tablespace ID. */
1110 static constexpr space_id_t s_temp_space_id = 0xFFFFFFFD;
1111
1112 /** The number of space IDs dedicated to each undo tablespace */
1113 static constexpr space_id_t s_undo_space_id_range = 400000;
1114
1115 /** The lowest undo tablespace ID. */
1118
1119 /** The highest undo tablespace ID. */
1121
1122 /** Start space_ids for temporary tablespaces. */
1124
1125 /** The number of space IDs dedicated to temporary tablespaces */
1126 static constexpr space_id_t s_temp_space_id_range = 400000;
1127
1128 /** Lowest temporary general space id */
1131
1132 /** The first reserved tablespace ID */
1134
1135 /** The dd::Tablespace::id of the dictionary tablespace. */
1136 static constexpr dd::Object_id s_dd_dict_space_id = 1;
1137
1138 /** The dd::Tablespace::id of innodb_system. */
1139 static constexpr dd::Object_id s_dd_sys_space_id = 2;
1140
1141 /** The dd::Tablespace::id of innodb_temporary. */
1142 static constexpr dd::Object_id s_dd_temp_space_id = 3;
1143
1144 /** The name of the data dictionary tablespace. */
1145 static const char *s_dd_space_name;
1146
1147 /** The file name of the data dictionary tablespace. */
1148 static const char *s_dd_space_file_name;
1149
1150 /** The name of the hard-coded system tablespace. */
1151 static const char *s_sys_space_name;
1152
1153 /** The name of the predefined temporary tablespace. */
1154 static const char *s_temp_space_name;
1155
1156 /** The file name of the predefined temporary tablespace. */
1157 static const char *s_temp_space_file_name;
1158
1159 /** The hard-coded tablespace name innodb_file_per_table. */
1160 static const char *s_file_per_table_name;
1161
1162 /** These two undo tablespaces cannot be dropped. */
1165
1166 /** The table ID of mysql.innodb_dynamic_metadata */
1168
1169 /** The clustered index ID of mysql.innodb_dynamic_metadata */
1171};
1172
1173/** Structure for persisting dynamic metadata of data dictionary */
1175#ifndef UNIV_HOTBACKUP
1176 /** Write dynamic metadata to DD buffer table immediately when such data is
1177 generated. By default, the metadata is first written to redo log and then to
1178 the DD buffer table during checkpoint. This is going to hurt auto increment
1179 performance and Currently enabled by clone for short time to eliminate
1180 dependency with dynamic metadata recovered from redo log. */
1182 public:
1183 /** Constructor to immediate persisting mode.
1184 @param[in,out] persister dictionary persister */
1185 Enable_immediate(dict_persist_t *persister);
1186
1187 /** Destructor to switch back to default mode. */
1189
1190 /** Disable copy construction */
1192
1193 /** Disable assignment */
1195
1196 private:
1197 /** Dictionary persister */
1199 };
1200
1201 /** @return true if need to write dynamic metadata to DD buffer table
1202 immediately after logging. */
1204 return m_persist_immediately.load();
1205 }
1206
1207 /** List of tables whose dirty_status are marked as METADATA_DIRTY,
1208 or METADATA_BUFFERED. It's protected by the mutex */
1211#endif
1212
1213 /** Mutex to protect data in this structure, also the
1214 dict_table_t::dirty_status and
1215 dict_table_t::in_dirty_dict_tables_list
1216 This mutex should be low-level one so that it can be used widely
1217 when necessary, so its level had to be above SYNC_LOG. However,
1218 after this mutex, persister may have to access B-tree and require
1219 tree latch, the latch level of this mutex then has to be right
1220 before the SYNC_INDEX_TREE. */
1221 ib_mutex_t mutex;
1222
1223 /** Number of the tables which are of status METADATA_DIRTY.
1224 It's protected by the mutex */
1225 std::atomic<uint32_t> num_dirty_tables;
1226
1227 /** If set, dynamic metadata is saved to DD buffer table immediately.
1228 Currently we consider only auto increment PM_TABLE_AUTO_INC. Corrupt
1229 index PM_INDEX_CORRUPTED is not needed to be saved immediately. */
1230 std::atomic<bool> m_persist_immediately;
1231
1232#ifndef UNIV_HOTBACKUP
1233 /** DDTableBuffer table for persistent dynamic metadata */
1235#endif /* !UNIV_HOTBACKUP */
1236
1237 /** Collection of instances to persist dynamic metadata */
1239};
1240
1241#ifndef UNIV_HOTBACKUP
1242/** dummy index for ROW_FORMAT=REDUNDANT supremum and infimum records */
1244
1245/** Inits dict_ind_redundant. */
1246void dict_ind_init();
1247
1248/** Converts a database and table name from filesystem encoding (e.g.
1249"@code d@i1b/a@q1b@1Kc @endcode", same format as used in dict_table_t::name)
1250in two strings in UTF8MB3 encoding (e.g. dцb and aюbØc). The output buffers must
1251be at least MAX_DB_UTF8MB3_LEN and MAX_TABLE_UTF8MB3_LEN bytes.
1252@param[in] db_and_table database and table names,
1253 e.g. "@code d@i1b/a@q1b@1Kc @endcode"
1254@param[out] db_utf8mb3 database name, e.g. dцb
1255@param[in] db_utf8mb3_size db_utf8mb3 size
1256@param[out] table_utf8mb3 table name, e.g. aюbØc
1257@param[in] table_utf8mb3_size table_utf8mb3 size */
1258void dict_fs2utf8(const char *db_and_table, char *db_utf8mb3,
1259 size_t db_utf8mb3_size, char *table_utf8mb3,
1260 size_t table_utf8mb3_size);
1261
1262/** Resize the hash tables based on the current buffer pool size. */
1263void dict_resize();
1264
1265/** Wrapper for the mysql.innodb_dynamic_metadata used to buffer the persistent
1266dynamic metadata.
1267This should be a table with only clustered index, no delete-marked records,
1268no locking, no undo logging, no purge, no adaptive hash index.
1269We should always use low level btr functions to access and modify the table.
1270Accessing this table should be protected by dict_sys->mutex */
1272 public:
1273 /** Default constructor */
1274 DDTableBuffer();
1275
1276 /** Destructor */
1278
1279 /** Replace the dynamic metadata for a specific table
1280 @param[in] id table id
1281 @param[in] version table dynamic metadata version
1282 @param[in] metadata the metadata we want to replace
1283 @param[in] len the metadata length
1284 @return DB_SUCCESS or error code */
1285 dberr_t replace(table_id_t id, uint64_t version, const byte *metadata,
1286 size_t len);
1287
1288 /** Remove the whole row for a specific table
1289 @param[in] id table id
1290 @return DB_SUCCESS or error code */
1292
1293 /** Get the buffered metadata for a specific table, the caller
1294 has to delete the returned std::string object by ut::delete_
1295 @param[in] id table id
1296 @param[out] version table dynamic metadata version
1297 @return the metadata saved in a vector object, if nothing, the
1298 vector would be empty */
1299 std::vector<byte> get(table_id_t id, uint64_t *version);
1300
1301 private:
1302 /** Initialize m_index, the in-memory clustered index of the table
1303 and two tuples used in this class */
1304 void init();
1305
1306 /** Open the mysql.innodb_dynamic_metadata when DD is not fully up */
1307 void open();
1308
1309 /** Create the search and replace tuples */
1310 void create_tuples();
1311
1312 /** Initialize the id field of tuple
1313 @param[out] tuple the tuple to be initialized
1314 @param[in] id table id */
1315 void init_tuple_with_id(dtuple_t *tuple, table_id_t id);
1316
1317 /** Free the things initialized in init() */
1318 void close();
1319
1320 /** Prepare for a update on METADATA field
1321 @param[in] entry clustered index entry to replace rec
1322 @param[in] rec clustered index record
1323 @return update vector of differing fields without system columns,
1324 or NULL if there isn't any different field */
1325 upd_t *update_set_metadata(const dtuple_t *entry, const rec_t *rec);
1326
1327 private:
1328 /** The clustered index of this system table */
1330
1331 /** The heap used for dynamic allocations, which should always
1332 be freed before return */
1334
1335 /** The heap used during replace() operation, which should always
1336 be freed before return */
1338
1339 /** The heap used to create the search tuple and replace tuple */
1341
1342 /** The tuple used to search for specified table, it's protected
1343 by dict_persist->mutex */
1345
1346 /** The tuple used to replace for specified table, it's protected
1347 by dict_persist->mutex */
1349
1350 private:
1351 /** Column number of mysql.innodb_dynamic_metadata.table_id */
1352 static constexpr unsigned TABLE_ID_COL_NO = 0;
1353
1354 /** Column number of mysql.innodb_dynamic_metadata.version */
1355 static constexpr unsigned VERSION_COL_NO = 1;
1356
1357 /** Column number of mysql.innodb_dynamic_metadata.metadata */
1358 static constexpr unsigned METADATA_COL_NO = 2;
1359
1360 /** Number of user columns */
1361 static constexpr unsigned N_USER_COLS = METADATA_COL_NO + 1;
1362
1363 /** Number of columns */
1364 static constexpr unsigned N_COLS = N_USER_COLS + DATA_N_SYS_COLS;
1365
1366 /** Clustered index field number of
1367 mysql.innodb_dynamic_metadata.table_id */
1368 static constexpr unsigned TABLE_ID_FIELD_NO = TABLE_ID_COL_NO;
1369
1370 /** Clustered index field number of
1371 mysql.innodb_dynamic_metadata.version */
1372 static constexpr unsigned VERSION_FIELD_NO = VERSION_COL_NO + 2;
1373
1374 /** Clustered index field number of
1375 mysql.innodb_dynamic_metadata.metadata
1376 Plusing 2 here skips the DATA_TRX_ID and DATA_ROLL_PTR fields */
1377 static constexpr unsigned METADATA_FIELD_NO = METADATA_COL_NO + 2;
1378
1379 /** Number of fields in the clustered index */
1380 static constexpr unsigned N_FIELDS = METADATA_FIELD_NO + 1;
1381};
1382
1383/** Mark the dirty_status of a table as METADATA_DIRTY, and add it to the
1384dirty_dict_tables list if necessary.
1385@param[in,out] table table */
1387#endif /* !UNIV_HOTBACKUP */
1388
1389/** Flags an index corrupted in the data dictionary cache only. This
1390is used to mark a corrupted index when index's own dictionary
1391is corrupted, and we would force to load such index for repair purpose.
1392Besides, we have to write a redo log.
1393We don't want to hold dict_sys->mutex here, so that we can set index as
1394corrupted in some low-level functions. We would only set the flags from
1395not corrupted to corrupted when server is running, so it should be safe
1396to set it directly.
1397@param[in,out] index index, must not be NULL */
1399
1400#ifndef UNIV_HOTBACKUP
1401
1402/** Check if there is any latest persistent dynamic metadata recorded
1403in DDTableBuffer table of the specific table. If so, read the metadata and
1404update the table object accordingly. It's used when loading table.
1405@param[in] table table object */
1407
1408/** Check if any table has any dirty persistent data, if so
1409write dirty persistent data of table to mysql.innodb_dynamic_metadata
1410accordingly. */
1412
1413#ifdef UNIV_DEBUG
1414/** Sets merge_threshold for all indexes in dictionary cache for debug.
1415@param[in] merge_threshold_all value to set for all indexes */
1416void dict_set_merge_threshold_all_debug(uint merge_threshold_all);
1417#endif /* UNIV_DEBUG */
1418
1419/** Validate the table flags.
1420@param[in] flags Table flags
1421@return true if valid. */
1422static inline bool dict_tf_is_valid(uint32_t flags);
1423
1424/** Validate both table flags and table flags2 and make sure they
1425are compatible.
1426@param[in] flags Table flags
1427@param[in] flags2 Table flags2
1428@return true if valid. */
1429static inline bool dict_tf2_is_valid(uint32_t flags, uint32_t flags2);
1430
1431/** Check if the tablespace for the table has been discarded.
1432 @return true if the tablespace has been discarded. */
1433[[nodiscard]] static inline bool dict_table_is_discarded(
1434 const dict_table_t *table); /*!< in: table to check */
1435
1436/** Check whether the table is DDTableBuffer. See class DDTableBuffer
1437@param[in] table table to check
1438@return true if this is a DDTableBuffer table. */
1440
1441/** Check if the table is in a shared tablespace (System or General).
1442@param[in] table table to check
1443@return true if table is a shared tablespace, false if not. */
1444[[nodiscard]] static inline bool dict_table_in_shared_tablespace(
1445 const dict_table_t *table);
1446
1447/** Check whether locking is disabled for this table.
1448Currently this is done for intrinsic table as their visibility is limited
1449to the connection and the DDTableBuffer as it's protected by
1450dict_persist->mutex.
1451
1452@param[in] table table to check
1453@return true if locking is disabled. */
1454[[nodiscard]] static inline bool dict_table_is_locking_disabled(
1455 const dict_table_t *table);
1456
1457/** Turn-off redo-logging if temporary table.
1458@param[in] table Table to check
1459@param[out] mtr Mini-transaction */
1461 mtr_t *mtr);
1462
1463/** Get table session row-id and increment the row-id counter for next use.
1464@param[in,out] table table handler
1465@return next table local row-id. */
1468
1469/** Get table session trx-id and increment the trx-id counter for next use.
1470@param[in,out] table table handler
1471@return next table local trx-id. */
1474
1475/** Get current session trx-id.
1476@param[in] table table handler
1477@return table local trx-id. */
1479 const dict_table_t *table);
1480
1481/** This function should be called whenever a page is successfully
1482 compressed. Updates the compression padding information. */
1484 dict_index_t *index); /*!< in/out: index to be updated. */
1485/** This function should be called whenever a page compression attempt
1486 fails. Updates the compression padding information. */
1488 dict_index_t *index); /*!< in/out: index to be updated. */
1489/** Return the optimal page size, for which page will likely compress.
1490 @return page size beyond which page may not compress*/
1492 dict_index_t *index); /*!< in: index for which page size
1493 is requested */
1494/** Convert table flag to row format string.
1495 @return row format name */
1497 uint32_t table_flag); /*!< in: row format setting */
1498/** Return maximum size of the node pointer record.
1499 @return maximum size of the record in bytes */
1501 const dict_index_t *index); /*!< in: index */
1502
1503/** Get index by first field of the index.
1504@param[in] table table
1505@param[in] col_index position of column in table
1506@return index which is having first field matches with the field present in
1507field_index position of table */
1509 dict_table_t *table, ulint col_index);
1510#endif /* !UNIV_HOTBACKUP */
1511
1512/** encode number of columns and number of virtual columns in one
15134 bytes value. We could do this because the number of columns in
1514InnoDB is limited to 1017
1515@param[in] n_col number of non-virtual column
1516@param[in] n_v_col number of virtual column
1517@return encoded value */
1518static inline ulint dict_table_encode_n_col(ulint n_col, ulint n_v_col);
1519
1520/** Decode number of virtual and non-virtual columns in one 4 bytes value.
1521@param[in] encoded encoded value
1522@param[in,out] n_col number of non-virtual column
1523@param[in,out] n_v_col number of virtual column */
1524static inline void dict_table_decode_n_col(uint32_t encoded, uint32_t *n_col,
1525 uint32_t *n_v_col);
1526
1527/** Free the virtual column template
1528@param[in,out] vc_templ virtual column template */
1529static inline void dict_free_vc_templ(dict_vcol_templ_t *vc_templ);
1530
1531/** Returns a virtual column's name according to its original
1532MySQL table position.
1533@param[in] table target table
1534@param[in] col_nr column number (nth column in the table)
1535@return column name. */
1537 ulint col_nr);
1538
1539/** Check whether the table have virtual index.
1540@param[in] table InnoDB table
1541@return true if the table have virtual index, false otherwise. */
1543
1544/** Retrieve in-memory index for SDI table.
1545@param[in] tablespace_id innodb tablespace ID
1546@return dict_index_t structure or NULL*/
1548
1549/** Retrieve in-memory table object for SDI table.
1550@param[in] tablespace_id innodb tablespace ID
1551@param[in] dict_locked true if dict_sys mutex is acquired
1552@param[in] is_create true when creating SDI Index
1553@return dict_table_t structure */
1554dict_table_t *dict_sdi_get_table(space_id_t tablespace_id, bool dict_locked,
1555 bool is_create);
1556
1557/** Remove the SDI table from table cache.
1558@param[in] space_id InnoDB tablespace ID
1559@param[in] sdi_table SDI table
1560@param[in] dict_locked true if dict_sys mutex acquired */
1561void dict_sdi_remove_from_cache(space_id_t space_id, dict_table_t *sdi_table,
1562 bool dict_locked);
1563
1564/** Check if the index is SDI index
1565@param[in] index in-memory index structure
1566@return true if index is SDI index else false */
1567static inline bool dict_index_is_sdi(const dict_index_t *index);
1568
1569/** Check if an table id belongs SDI table
1570@param[in] table_id dict_table_t id
1571@return true if table_id is SDI table_id else false */
1572static inline bool dict_table_is_sdi(uint64_t table_id);
1573
1574/** Close SDI table.
1575@param[in] table the in-memory SDI table object */
1577
1578/** Acquire exclusive MDL on SDI tables. This is acquired to
1579prevent concurrent DROP table/tablespace when there is purge
1580happening on SDI table records. Purge will acquire shared
1581MDL on SDI table.
1582
1583Exclusive MDL is transactional(released on trx commit). So
1584for successful acquisition, there should be a valid thd associated
1585with a trx.
1586
1587Acquisition order of SDI MDL and SDI table has to be in the same
1588order:
1589
15901. dd_sdi_acquire_exclusive_mdl
15912. row_drop_table_from_cache()/innodb_drop_tablespace()
1592 ->dict_sdi_remove_from_cache()->dd_table_open_on_id()
1593
1594In purge:
1595
15961. dd_sdi_acquire_shared_mdl
15972. dd_table_open_on_id()
1598
1599@param[in] thd server thread instance
1600@param[in] space_id InnoDB tablespace id
1601@param[in,out] sdi_mdl MDL ticket on SDI table
1602@retval DB_SUCESS on success
1603@retval DB_LOCK_WAIT_TIMEOUT on error */
1605 MDL_ticket **sdi_mdl);
1606
1607/** Acquire shared MDL on SDI tables. This is acquired by purge to
1608prevent concurrent DROP table/tablespace.
1609DROP table/tablespace will acquire exclusive MDL on SDI table
1610
1611Acquisition order of SDI MDL and SDI table has to be in same
1612order:
1613
16141. dd_sdi_acquire_exclusive_mdl
16152. row_drop_table_from_cache()/innodb_drop_tablespace()
1616 ->dict_sdi_remove_from_cache()->dd_table_open_on_id()
1617
1618In purge:
1619
16201. dd_sdi_acquire_shared_mdl
16212. dd_table_open_on_id()
1622
1623MDL should be released by caller
1624@param[in] thd server thread instance
1625@param[in] space_id InnoDB tablespace id
1626@param[in,out] sdi_mdl MDL ticket on SDI table
1627@retval DB_SUCESS on success
1628@retval DB_LOCK_WAIT_TIMEOUT on error */
1630 MDL_ticket **sdi_mdl);
1631
1632/** Check whether the dict_table_t is a partition.
1633A partitioned table on the SQL level is composed of InnoDB tables,
1634where each InnoDB table is a [sub]partition including its secondary indexes
1635which belongs to the partition.
1636@param[in] table Table to check.
1637@return true if the dict_table_t is a partition else false. */
1638static inline bool dict_table_is_partition(const dict_table_t *table);
1639
1640/** Allocate memory for intrinsic cache elements in the index
1641@param[in] index index object */
1643
1644/** Get the tablespace data directory if set, otherwise empty string.
1645@return the data directory */
1646[[nodiscard]] std::string dict_table_get_datadir(const dict_table_t *table);
1647
1648/** Set the compression type for the tablespace of a table
1649@param[in] table The table that should be compressed
1650@param[in] algorithm Text representation of the algorithm
1651@param[in] is_import_op True if it's being set during import operation
1652@return DB_SUCCESS or error code */
1654 const char *algorithm,
1655 bool is_import_op);
1656
1657/** @return true if all base column of virtual column is foreign key column
1658@param[in] vcol in-memory virtual column
1659@param[in] foreign in-memory Foreign key constraint */
1661 dict_foreign_t *foreign);
1662
1663/** Get maximum possible size needed for a field.
1664@param[in] table innodb table definition cache
1665@param[in] index index
1666@param[in] field field
1667@param[in,out] rec_max_size max record size calculated till now. It
1668 will be increased with the length needed
1669 for this field */
1671 const dict_field_t *field, size_t &rec_max_size);
1672
1673/** Get the maximum size of a record permissible on an index page.
1674@param[in] table innodb table definition cache
1675@param[in] index index
1676@param[out] page_rec_max maximum size of record on a leaf page
1677@param[out] page_ptr_max maximum size of record on non-leaf page */
1679 const dict_index_t *index, size_t &page_rec_max,
1680 size_t &page_ptr_max);
1681
1682/** validate that maximum possible size of a row is within permissible limit.
1683@param[in] table innodb table definition cache
1684@param[in] index index
1685@param[in] page_rec_max maximum size of possible record on leaf page
1686@param[in] page_ptr_max maximum size of possible record on non-leaf page
1687@param[out] rec_max_size maximum size of record on page
1688@return true if max record size is within limit, false otherwise. */
1690 const dict_index_t *index,
1691 const size_t page_rec_max,
1692 const size_t page_ptr_max,
1693 size_t &rec_max_size);
1694
1695#ifndef UNIV_HOTBACKUP
1696/** Ensure that new row id generated by dict_sys is at least the specified one
1697@param[in] next_id Minimum row id to use from now on to avoid conflict */
1699#endif /* !UNIV_HOTBACKUP */
1700
1701#include "dict0dict.ic"
1702
1703#endif
uint32_t space_id_t
Tablespace identifier.
Definition: api0api.h:49
uint32_t page_no_t
Page number.
Definition: api0api.h:47
Wrapper for the mysql.innodb_dynamic_metadata used to buffer the persistent dynamic metadata.
Definition: dict0dict.h:1271
~DDTableBuffer()
Destructor.
Definition: dict0dict.cc:5050
static constexpr unsigned N_USER_COLS
Number of user columns.
Definition: dict0dict.h:1361
std::vector< byte > get(table_id_t id, uint64_t *version)
Get the buffered metadata for a specific table, the caller has to delete the returned std::string obj...
Definition: dict0dict.cc:5395
void init_tuple_with_id(dtuple_t *tuple, table_id_t id)
Initialize the id field of tuple.
Definition: dict0dict.cc:5205
static constexpr unsigned TABLE_ID_COL_NO
Column number of mysql.innodb_dynamic_metadata.table_id.
Definition: dict0dict.h:1352
mem_heap_t * m_replace_heap
The heap used during replace() operation, which should always be freed before return.
Definition: dict0dict.h:1337
void create_tuples()
Create the search and replace tuples.
Definition: dict0dict.cc:5053
dict_index_t * m_index
The clustered index of this system table.
Definition: dict0dict.h:1329
void init()
Initialize m_index, the in-memory clustered index of the table and two tuples used in this class.
Definition: dict0dict.cc:5096
static constexpr unsigned METADATA_COL_NO
Column number of mysql.innodb_dynamic_metadata.metadata.
Definition: dict0dict.h:1358
static constexpr unsigned VERSION_FIELD_NO
Clustered index field number of mysql.innodb_dynamic_metadata.version.
Definition: dict0dict.h:1372
DDTableBuffer()
Default constructor.
Definition: dict0dict.cc:5042
dtuple_t * m_replace_tuple
The tuple used to replace for specified table, it's protected by dict_persist->mutex.
Definition: dict0dict.h:1348
static constexpr unsigned METADATA_FIELD_NO
Clustered index field number of mysql.innodb_dynamic_metadata.metadata Plusing 2 here skips the DATA_...
Definition: dict0dict.h:1377
void close()
Free the things initialized in init()
Definition: dict0dict.cc:5214
upd_t * update_set_metadata(const dtuple_t *entry, const rec_t *rec)
Prepare for a update on METADATA field.
Definition: dict0dict.cc:5228
void open()
Open the mysql.innodb_dynamic_metadata when DD is not fully up.
Definition: dict0dict.cc:5122
static constexpr unsigned TABLE_ID_FIELD_NO
Clustered index field number of mysql.innodb_dynamic_metadata.table_id.
Definition: dict0dict.h:1368
static constexpr unsigned N_COLS
Number of columns.
Definition: dict0dict.h:1364
static constexpr unsigned N_FIELDS
Number of fields in the clustered index.
Definition: dict0dict.h:1380
dtuple_t * m_search_tuple
The tuple used to search for specified table, it's protected by dict_persist->mutex.
Definition: dict0dict.h:1344
dberr_t remove(table_id_t id)
Remove the whole row for a specific table.
Definition: dict0dict.cc:5359
mem_heap_t * m_dynamic_heap
The heap used for dynamic allocations, which should always be freed before return.
Definition: dict0dict.h:1333
mem_heap_t * m_heap
The heap used to create the search tuple and replace tuple.
Definition: dict0dict.h:1340
dberr_t replace(table_id_t id, uint64_t version, const byte *metadata, size_t len)
Replace the dynamic metadata for a specific table.
Definition: dict0dict.cc:5277
static constexpr unsigned VERSION_COL_NO
Column number of mysql.innodb_dynamic_metadata.version.
Definition: dict0dict.h:1355
A granted metadata lock.
Definition: mdl.h:988
Persistent dynamic metadata for a table.
Definition: dict0mem.h:2811
Container of persisters used in the system.
Definition: dict0mem.h:3007
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Write dynamic metadata to DD buffer table immediately when such data is generated.
Definition: dict0dict.h:1181
~Enable_immediate()
Destructor to switch back to default mode.
Definition: dict0dict.cc:5897
Enable_immediate(dict_persist_t *persister)
Constructor to immediate persisting mode.
Definition: dict0dict.cc:5887
Enable_immediate & operator=(Enable_immediate const &)=delete
Disable assignment.
Enable_immediate(Enable_immediate const &)=delete
Disable copy construction.
dict_persist_t * m_persister
Dictionary persister.
Definition: dict0dict.h:1198
Definition: hash0hash.h:375
size_t get_n_cells() const
Returns number of cells in cells[] array.
Definition: hash0hash.h:393
Globally unique index identifier.
Definition: dict0types.h:221
Page size descriptor.
Definition: page0size.h:50
constexpr DWORD buf_size
Definition: create_def.cc:229
SQL data field and tuple.
Data types.
constexpr uint32_t DATA_N_SYS_COLS
number of system columns defined above
Definition: data0type.h:194
dberr_t
Definition: db0err.h:39
page_no_t dict_table_extent_size(const dict_table_t *table)
Determine the extent size (in pages) for the given table.
Definition: dict0dict.cc:5000
static void dict_free_vc_templ(dict_vcol_templ_t *vc_templ)
Free the virtual column template.
void dict_table_change_id_in_cache(dict_table_t *table, table_id_t new_id)
Change the id of a table object in the dictionary cache.
Definition: dict0dict.cc:1920
constexpr uint32_t BIG_ROW_SIZE
Definition: dict0dict.h:639
static ulint dict_table_encode_n_col(ulint n_col, ulint n_v_col)
encode number of columns and number of virtual columns in one 4 bytes value.
constexpr uint32_t DICT_INDEX_SPATIAL_NODEPTR_SIZE
The number of fields in the nonleaf page of spatial index, except the page no field.
Definition: dict0dict.h:699
dberr_t dd_sdi_acquire_exclusive_mdl(THD *thd, space_id_t space_id, MDL_ticket **sdi_mdl)
Acquire exclusive MDL on SDI tables.
Definition: dict0dict.cc:5788
ulint dict_get_db_name_len(const char *name)
Get the database name length in a table name.
Definition: dict0dict.cc:284
void dict_print_info_on_foreign_key_in_create_format(FILE *file, trx_t *trx, dict_foreign_t *foreign, bool add_newline)
Outputs info on a foreign key of a table in a format suitable for CREATE TABLE.
Definition: dict0dict.cc:3881
static dict_v_col_t * dict_table_get_nth_v_col(const dict_table_t *table, ulint pos)
Gets the nth virtual column of a table.
ulint dict_table_get_highest_foreign_id(dict_table_t *table)
Finds the highest [number] for foreign key constraints of the table.
Definition: dict0dict.cc:3648
uint16_t dict_index_get_n_fields(const dict_index_t *index)
Gets the number of fields in the internal representation of an index, including fields added by the d...
Definition: dict0dict.ic:545
static bool dict_index_has_desc(const dict_index_t *index)
Check whether the index consists of descending columns only.
static void dict_index_set_space(dict_index_t *index, space_id_t space)
Sets the space id of the root of the index tree.
static ulint dict_table_get_sys_col_no(const dict_table_t *table, ulint sys)
Gets the given system column number of a table.
ulint dict_table_mysql_pos_to_innodb(const dict_table_t *table, ulint n)
Get the innodb column position for a non-virtual column according to its original MySQL table positio...
Definition: dict0dict.cc:1108
static void dict_table_next_uncorrupted_index(dict_index_t *&index)
Definition: dict0dict.h:421
void dict_partitioned_table_remove_from_cache(const char *name)
Try to invalidate an entry from the dict cache, for a partitioned table, if any table found.
Definition: dict0dict.cc:2057
const char * dict_remove_db_name(const char *name)
Return the end of table name where we have removed dbname and '/'.
Definition: dict0dict.cc:272
bool dict_foreign_qualify_index(const dict_table_t *table, const char **col_names, const char **columns, ulint n_cols, const dict_index_t *index, const dict_index_t *types_idx, bool check_charsets, ulint check_null)
Tries to find an index whose first fields are the columns in the array, in the same order and is not ...
Definition: dict0dict.cc:4738
void dict_close()
Closes the data dictionary module.
Definition: dict0dict.cc:4611
static ulint dict_col_get_index_pos(const dict_col_t *col, const dict_index_t *index)
Gets the column position in the given index.
ulint dict_index_get_n_ordering_defined_by_user(const dict_index_t *index)
Gets the number of user-defined ordering fields in the index.
Definition: dict0dict.ic:623
static void dict_table_prevent_eviction(dict_table_t *table)
Prevent table eviction by moving a table to the non-LRU list from the LRU list if it is not already t...
dberr_t dict_table_rename_in_cache(dict_table_t *table, const char *new_name, bool rename_also_foreigns)
Renames a table object.
Definition: dict0dict.cc:1541
void dict_table_stats_compute_mutex_create_lazy(dict_table_t *table, bool enabled)
Create a dict_table_t's stats compute mutex or delay for lazy creation.
Definition: dict0dict.cc:373
uint32_t dict_tf_to_fsp_flags(uint32_t table_flags)
Convert a 32 bit integer table flags to the 32 bit FSP Flags.
Definition: dict0dict.cc:4955
void dict_mutex_exit_for_mysql()
Releases the dictionary system mutex for MySQL.
Definition: dict0dict.cc:300
void dict_table_stats_compute_unlock(dict_table_t *table)
Unlock the lock locked by dict_table_stats_compute_lock().
Definition: dict0dict.cc:482
bool dict_tables_have_same_db(const char *name1, const char *name2)
Checks if the database name in two table names is the same.
Definition: dict0dict.cc:256
static bool dict_table_in_shared_tablespace(const dict_table_t *table)
Check if the table is in a shared tablespace (System or General).
static bool dict_table_is_discarded(const dict_table_t *table)
Check if the tablespace for the table has been discarded.
rec_t * dict_index_copy_rec_order_prefix(const dict_index_t *index, const rec_t *rec, ulint *n_fields, byte **buf, size_t *buf_size)
Copies an initial segment of a physical record, long enough to specify an index entry uniquely.
Definition: dict0dict.cc:3778
static ulint dict_table_get_n_tot_u_cols(const dict_table_t *table)
static trx_id_t dict_table_get_curr_table_sess_trx_id(const dict_table_t *table)
Get current session trx-id.
static bool dict_table_has_indexed_v_cols(const dict_table_t *table)
Check if a table has indexed virtual columns.
static ulint dict_col_get_clust_pos(const dict_col_t *col, const dict_index_t *clust_index)
Gets the column position in the clustered index.
void dict_table_mark_dirty(dict_table_t *table)
Mark the dirty_status of a table as METADATA_DIRTY, and add it to the dirty_dict_tables list if neces...
Definition: dict0dict.cc:4178
static bool dict_tf2_is_valid(uint32_t flags, uint32_t flags2)
Validate both table flags and table flags2 and make sure they are compatible.
static void dict_table_n_rows_dec(dict_table_t *table)
Decrement the number of rows in the table by one.
static row_id_t dict_table_get_next_table_sess_row_id(dict_table_t *table)
Get table session row-id and increment the row-id counter for next use.
dberr_t dict_index_add_to_cache_w_vcol(dict_table_t *table, dict_index_t *index, const dict_add_v_col_t *add_v, page_no_t page_no, bool strict)
Adds an index to the dictionary cache, with possible indexing newly added column.
Definition: dict0dict.cc:2516
static ulint dict_index_is_ibuf(const dict_index_t *index)
Check whether the index is the insert buffer tree.
static void dict_table_x_unlock_indexes(dict_table_t *table)
Release the exclusive locks on all index tree.
void dict_table_stats_compute_mutex_destroy(dict_table_t *table)
Destroy a dict_table_t's stats compute mutex.
Definition: dict0dict.cc:401
static void dict_disable_redo_if_temporary(const dict_table_t *table, mtr_t *mtr)
Turn-off redo-logging if temporary table.
const char * dict_table_get_v_col_name(const dict_table_t *table, ulint col_nr)
Returns a virtual column's name.
Definition: dict0dict.cc:675
constexpr uint32_t MAX_NUM_FK_COLUMNS
Maximum number of columns in a foreign key constraint.
Definition: dict0dict.h:989
rw_lock_t * dict_operation_lock
the data dictionary rw-latch protecting dict_sys
Definition: dict0dict.cc:176
void dict_ind_init()
Inits dict_ind_redundant.
Definition: dict0dict.cc:4346
void dict_table_move_from_non_lru_to_lru(dict_table_t *table)
Move a table to the LRU end from the non LRU list.
Definition: dict0dict.cc:1473
void dict_validate_no_purge_rollback_threads()
Validate no active background threads to cause purge or rollback operations.
Definition: dict0dict.cc:5922
void dict_table_stats_latch_destroy(dict_table_t *table)
Destroy a dict_table_t's stats latch.
Definition: dict0dict.cc:390
void dict_mutex_enter_for_mysql()
Reserves the dictionary system mutex for MySQL.
Definition: dict0dict.cc:297
void dict_foreign_free(dict_foreign_t *foreign)
Frees a foreign key struct.
Definition: dict0mem.h:1796
dict_persist_t * dict_persist
the dictionary persisting structure
Definition: dict0dict.cc:166
static ulint dict_index_is_sec_or_ibuf(const dict_index_t *index)
Check whether the index is a secondary index or the insert buffer tree.
void dict_table_autoinc_lock(dict_table_t *table)
Acquire the autoinc lock.
Definition: dict0dict.cc:782
static page_no_t dict_index_get_page(const dict_index_t *tree)
Gets the page number of the root of the index tree.
ib_mutex_t dict_foreign_err_mutex
Definition: dict0dict.cc:252
void dict_persist_init()
Inits the structure for persisting dynamic metadata.
Definition: dict0dict.cc:3972
void dict_table_add_to_cache(dict_table_t *table, bool can_be_evicted)
Adds a table object to the dictionary cache.
Definition: dict0dict.cc:1274
static ulint dict_max_v_field_len_store_undo(dict_table_t *table, ulint col_no)
Determine maximum bytes of a virtual column need to be stored in the undo log.
void dict_table_move_from_lru_to_non_lru(dict_table_t *table)
Move a table to the non LRU end of the LRU list.
Definition: dict0dict.cc:1455
void dict_index_remove_from_cache(dict_table_t *table, dict_index_t *index)
Removes an index from the dictionary cache.
Definition: dict0dict.cc:2791
dict_index_t * dict_sdi_get_index(space_id_t tablespace_id)
Retrieve in-memory index for SDI table.
Definition: dict0dict.cc:5720
void dict_table_close(dict_table_t *table, bool dict_locked, bool try_drop)
Decrements the count of open handles to a table.
Definition: dict0dict.cc:545
void dict_table_close_and_drop(trx_t *trx, dict_table_t *table)
Closes the only open handle to a table and drops a table while assuring that dict_sys->mutex is held ...
Definition: dict0dict.cc:621
const dict_index_t * dict_index_find(const index_id_t &id)
Look up an index among already opened tables.
Definition: dict0dict.cc:1504
void dict_move_to_mru(dict_table_t *table)
Move to the most recently used segment of the LRU list.
Definition: dict0dict.cc:1195
static bool dict_table_have_virtual_index(dict_table_t *table)
Check whether the table have virtual index.
ulint dict_index_node_ptr_max_size(const dict_index_t *index)
Return maximum size of the node pointer record.
Definition: dict0dict.cc:2126
static bool dict_index_is_online_ddl(const dict_index_t *index)
Determines if a secondary index is being or has been created online, or if the table is being rebuilt...
const uint32_t SDI_VERSION
SDI version.
Definition: dict0dict.h:74
void dict_table_autoinc_unlock(dict_table_t *table)
Release the autoinc lock.
Definition: dict0dict.cc:1008
static bool dict_table_is_partition(const dict_table_t *table)
Check whether the dict_table_t is a partition.
ulint dict_table_get_all_fts_indexes(dict_table_t *table, ib_vector_t *indexes)
Get all the FTS indexes on a table.
Definition: dict0dict.cc:970
void dict_index_remove_from_v_col_list(dict_index_t *index)
Clears the virtual column's index list before index is being freed.
Definition: dict0dict.cc:2408
void dict_resize()
Resize the hash tables based on the current buffer pool size.
Definition: dict0dict.cc:4565
void dict_table_stats_latch_create_lazy(dict_table_t *table, bool enabled)
Create a dict_table_t's stats latch or delay for lazy creation.
Definition: dict0dict.cc:355
void dict_set_merge_threshold_all_debug(uint merge_threshold_all)
Sets merge_threshold for all indexes in dictionary cache for debug.
Definition: dict0dict.cc:4333
static bool dict_index_is_sdi(const dict_index_t *index)
Check if the index is SDI index.
static ulint dict_index_is_unique(const dict_index_t *index)
Check whether the index is unique.
static bool dict_table_is_table_buffer(const dict_table_t *table)
Check whether the table is DDTableBuffer.
static void dict_table_decode_n_col(uint32_t encoded, uint32_t *n_col, uint32_t *n_v_col)
Decode number of virtual and non-virtual columns in one 4 bytes value.
FILE * dict_foreign_err_file
Definition: dict0dict.cc:250
bool dict_index_validate_max_rec_size(const dict_table_t *table, const dict_index_t *index, const size_t page_rec_max, const size_t page_ptr_max, size_t &rec_max_size)
validate that maximum possible size of a row is within permissible limit.
Definition: dict0dict.cc:2332
static bool dict_table_is_comp(const dict_table_t *table)
Check whether the table uses the compact page format.
static void dict_table_skip_corrupt_index(dict_index_t *&index)
Definition: dict0dict.h:414
static void dict_table_autoinc_persisted_update(dict_table_t *table, uint64_t autoinc)
Update the persisted autoinc counter to specified one, we should hold autoinc_persisted_mutex.
dtuple_t * dict_index_build_node_ptr(const dict_index_t *index, const rec_t *rec, page_no_t page_no, mem_heap_t *heap, ulint level)
Builds a node pointer out of a physical record and a page number.
Definition: dict0dict.cc:3716
void dict_table_persist_to_dd_table_buffer(dict_table_t *table)
Write back the dirty persistent dynamic metadata of the table to DDTableBuffer.
Definition: dict0dict.cc:4254
ulint dict_index_get_nth_field_pos(const dict_index_t *index, const dict_index_t *index2, ulint n)
Looks for a matching field in an index.
Definition: dict0dict.cc:1052
void dict_sdi_remove_from_cache(space_id_t space_id, dict_table_t *sdi_table, bool dict_locked)
Remove the SDI table from table cache.
Definition: dict0dict.cc:5760
uint32_t dict_vcol_base_is_foreign_key(dict_v_col_t *vcol, dict_foreign_t *foreign)
Definition: dict0dict.cc:5902
static bool dict_tf_is_valid(uint32_t flags)
Validate the table flags.
static ulint dict_table_get_n_v_cols(const dict_table_t *table)
Gets the number of virtual columns in a table in the dictionary cache.
void dict_table_read_dynamic_metadata(const byte *buffer, size_t size, PersistentTableMetadata *metadata)
Read persistent dynamic metadata stored in a buffer.
Definition: dict0dict.cc:4101
const char * dict_tf_to_row_format_string(uint32_t table_flag)
Convert table flag to row format string.
Definition: dict0dict.cc:4979
dict_index_t * dict_table_get_index_on_name(dict_table_t *table, const char *name, bool committed=true)
Get an index by name.
Definition: dict0dict.cc:4378
ulint dict_table_has_column(const dict_table_t *table, const char *col_name, ulint col_nr=0)
Check if the table has a given (non_virtual) column.
Definition: dict0dict.cc:647
void dict_set_corrupted(dict_index_t *index) UNIV_COLD
Flags an index corrupted in the data dictionary cache only.
Definition: dict0dict.cc:4201
void dict_sdi_close_table(dict_table_t *table)
Close SDI table.
Definition: dict0dict.cc:5712
void dict_table_stats_compute_lock(dict_table_t *table)
Acquire table's statistics compute lock.
Definition: dict0dict.cc:465
void dict_table_stats_unlock(dict_table_t *table, ulint latch_mode)
Unlock the latch that has been locked by dict_table_stats_lock().
Definition: dict0dict.cc:441
dict_index_t * dict_ind_redundant
dummy index for ROW_FORMAT=REDUNDANT supremum and infimum records
Definition: dict0dict.cc:72
static trx_id_t dict_table_get_next_table_sess_trx_id(dict_table_t *table)
Get table session trx-id and increment the trx-id counter for next use.
static void dict_tf_set(uint32_t *flags, rec_format_t format, uint32_t zip_ssize, bool use_data_dir, bool shared_space)
Set the various values in a dict_table_t::flags pointer.
uint16_t dict_index_get_n_unique_in_tree_nonleaf(const dict_index_t *index)
Gets the number of fields on nonleaf page level in the internal representation of an index which uniq...
Definition: dict0dict.ic:602
void dict_table_remove_from_cache_debug(dict_table_t *table, bool lru_evict)
Removes a table object from the dictionary cache, for debug purpose.
Definition: dict0dict.cc:2096
static const page_size_t dict_tf_get_page_size(uint32_t flags)
Extract the page size info from table flags.
void dict_table_stats_lock(dict_table_t *table, ulint latch_mode)
Lock the appropriate latch to protect a given table's statistics.
Definition: dict0dict.cc:411
static void dict_table_n_rows_inc(dict_table_t *table)
Increment the number of rows in the table by one.
void dict_index_copy_types(dtuple_t *tuple, const dict_index_t *index, ulint n_fields)
Copies types of fields contained in index to tuple.
Definition: dict0dict.cc:2953
void dict_persist_close()
Clear the structure.
Definition: dict0dict.cc:3993
static ulint dict_table_is_fts_column(ib_vector_t *indexes, ulint col_no, bool is_virtual)
Check whether a column exists in an FTS index.
check_name
Whether and when to allow temporary index names.
Definition: dict0dict.h:762
@ CHECK_ABORTED_OK
Allow aborted online index creation.
Definition: dict0dict.h:766
@ CHECK_ALL_COMPLETE
Require all indexes to be complete.
Definition: dict0dict.h:764
@ CHECK_PARTIAL_OK
Allow partial indexes to exist.
Definition: dict0dict.h:768
const space_id_t SYSTEM_TABLE_SPACE
Space id of system tablespace.
Definition: dict0dict.h:77
static bool dict_index_is_auto_gen_clust(const dict_index_t *index)
Check if index is auto-generated clustered index.
static void dict_allocate_mem_intrinsic_cache(dict_index_t *index)
Allocate memory for intrinsic cache elements in the index.
bool dict_table_is_referenced_by_foreign_key(const dict_table_t *table)
Checks if a table is referenced by foreign keys.
Definition: dict0dict.cc:3370
static bool dict_table_is_locking_disabled(const dict_table_t *table)
Check whether locking is disabled for this table.
static const page_size_t dict_table_page_size(const dict_table_t *table)
Get the table page size.
uint16_t dict_index_get_n_unique(const dict_index_t *index)
Gets the number of fields in the internal representation of an index that uniquely determine the posi...
Definition: dict0dict.ic:565
dberr_t dict_foreign_add_to_cache(dict_foreign_t *foreign, const char **col_names, bool check_charsets, bool can_free_fk, dict_err_ignore_t ignore_err)
Adds a foreign key constraint object to the dictionary cache.
Definition: dict0dict.cc:3504
dberr_t dict_set_compression(dict_table_t *table, const char *algorithm, bool is_import_op)
Set the compression type for the tablespace of a table.
Definition: dict0dict.cc:5863
void dict_index_zip_failure(dict_index_t *index)
This function should be called whenever a page compression attempt fails.
Definition: dict0dict.cc:4894
void dict_table_copy_v_types(dtuple_t *tuple, const dict_table_t *table)
Copies types of virtual columns contained in table to tuple and sets all fields of the tuple to the S...
Definition: dict0dict.cc:2990
constexpr uint32_t DICT_HEAP_SIZE
initial memory heap size when creating a table or index object
Definition: dict0dict.h:71
ulint dict_make_room_in_cache(ulint max_tables, ulint pct_check)
Make room in the table cache by evicting an unused table.
Definition: dict0dict.cc:1395
void dict_table_copy_types(dtuple_t *tuple, const dict_table_t *table)
Copies types of columns contained in table to tuple and sets all fields of the tuple to the SQL NULL ...
Definition: dict0dict.cc:3008
static ulint dict_col_get_no(const dict_col_t *col)
Gets the column number.
static uint32_t dict_tf_init(bool compact, ulint zip_ssize, bool atomic_blobs, bool data_dir, bool shared_space)
Initialize a dict_table_t::flags pointer.
static ulint dict_index_get_space_reserve()
Returns free space reserved for future updates of records.
bool dict_col_name_is_reserved(const char *name)
If the given column name is reserved for InnoDB system columns, return true.
Definition: dict0dict.cc:2104
static void dict_table_ddl_acquire(dict_table_t *table)
Move this table to non-LRU list for DDL operations if it's currently not there.
void dict_foreign_remove_from_cache(dict_foreign_t *foreign)
Removes a foreign constraint struct from the dictionary cache.
Definition: dict0dict.cc:3377
static uint64_t dict_table_get_n_rows(const dict_table_t *table)
Gets the approximately estimated number of rows in the table.
void dict_table_autoinc_persist(dict_table_t *table, uint64_t value)
Makes sure that the persisted autoinc value for the table is at least equal to value.
Definition: dict0dict.cc:838
uint16_t dict_index_get_n_unique_in_tree(const dict_index_t *index)
Gets the number of fields in the internal representation of an index which uniquely determine the pos...
Definition: dict0dict.ic:580
bool dict_foreign_replace_index(dict_table_t *table, const char **col_names, const dict_index_t *index)
Replace the index passed in with another equivalent index in the foreign key lists of the table.
Definition: dict0dict.cc:4399
uint64_t dict_table_autoinc_read(const dict_table_t *table)
Reads the next autoinc value (== autoinc counter value), 0 if not yet initialized.
Definition: dict0dict.cc:988
void dict_fs2utf8(const char *db_and_table, char *db_utf8mb3, size_t db_utf8mb3_size, char *table_utf8mb3, size_t table_utf8mb3_size)
Converts a database and table name from filesystem encoding (e.g.
Definition: dict0dict.cc:4517
bool dict_index_check_search_tuple(const dict_index_t *index, const dtuple_t *tuple)
Checks that a tuple has n_fields_cmp value in a sensible range, so that no comparison can occur with ...
Definition: dict0dict.cc:3699
dberr_t dict_index_add_to_cache(dict_table_t *table, dict_index_t *index, page_no_t page_no, bool strict)
Adds an index to the dictionary cache.
Definition: dict0dict.cc:2399
std::string dict_table_get_datadir(const dict_table_t *table)
Get the tablespace data directory if set, otherwise empty string.
Definition: dict0dict.cc:5853
void dict_table_autoinc_update_if_greater(dict_table_t *table, uint64_t value)
Updates the autoinc counter if the value supplied is greater than the current value.
Definition: dict0dict.cc:999
ulint dict_index_zip_pad_optimal_page_size(dict_index_t *index)
Return the optimal page size, for which page will likely compress.
Definition: dict0dict.cc:4913
static ulint dict_index_has_virtual(const dict_index_t *index)
Check whether the index contains a virtual column.
dict_index_t * dict_foreign_find_index(const dict_table_t *table, const char **col_names, const char **columns, ulint n_cols, const dict_index_t *types_idx, bool check_charsets, ulint check_null)
Tries to find an index whose first fields are the columns in the array, in the same order and is not ...
Definition: dict0dict.cc:3425
void dict_index_zip_success(dict_index_t *index)
This function should be called whenever a page is successfully compressed.
Definition: dict0dict.cc:4875
void dict_table_add_system_columns(dict_table_t *table, mem_heap_t *heap)
Adds system columns to a table object.
Definition: dict0dict.cc:1214
void get_permissible_max_size(const dict_table_t *table, const dict_index_t *index, size_t &page_rec_max, size_t &page_ptr_max)
Get the maximum size of a record permissible on an index page.
Definition: dict0dict.cc:2172
void dict_sys_set_min_next_row_id(row_id_t next_id)
Ensure that new row id generated by dict_sys is at least the specified one.
Definition: dict0dict.cc:5976
void dict_table_set_big_rows(dict_table_t *table)
Mark if table has big rows.
Definition: dict0dict.cc:1255
void dict_init()
Inits the data dictionary module.
Definition: dict0dict.cc:1166
void dict_table_autoinc_initialize(dict_table_t *table, uint64_t value)
Unconditionally set the autoinc counter.
Definition: dict0dict.cc:802
static void dict_table_allow_eviction(dict_table_t *table)
Allow the table to be evicted by moving a table to the LRU list from the non-LRU list if it is not al...
ulint dict_table_get_nth_col_pos(const dict_table_t *table, ulint n)
Looks for non-virtual column n position in the clustered index.
Definition: dict0dict.cc:1097
std::vector< table_id_t > dict_get_all_table_ids()
Gathers ids of all tables in cache at the moment.
Definition: dict0dict.cc:2797
void dict_table_check_for_dup_indexes(const dict_table_t *table, enum check_name check)
Check for duplicate index entries in a table [using the index name].
Definition: dict0dict.cc:4463
dict_table_op_t
Operation to perform when opening a table.
Definition: dict0dict.h:103
@ DICT_TABLE_OP_NORMAL
Expect the tablespace to exist.
Definition: dict0dict.h:105
@ DICT_TABLE_OP_LOAD_TABLESPACE
Silently load the tablespace if it does not exist, and do not load the definitions of incomplete inde...
Definition: dict0dict.h:110
@ DICT_TABLE_OP_DROP_ORPHAN
Drop any orphan indexes after an aborted online index creation.
Definition: dict0dict.h:107
static bool dict_table_is_sdi(uint64_t table_id)
Check if an table id belongs SDI table.
dict_table_t * dict_sdi_get_table(space_id_t tablespace_id, bool dict_locked, bool is_create)
Retrieve in-memory table object for SDI table.
Definition: dict0dict.cc:5736
static rw_lock_t * dict_index_get_lock(dict_index_t *index)
Gets the read-write lock of the index tree.
static bool dict_table_has_fts_index(dict_table_t *table)
Check if the table has an FTS index.
bool dict_table_col_in_clustered_key(const dict_table_t *table, ulint n)
Checks if a column is in the ordering columns of the clustered index of a table.
Definition: dict0dict.cc:1135
static void dict_table_ddl_release(dict_table_t *table)
Move this table to LRU list after DDL operations if it was moved to non-LRU list.
ulint dict_index_calc_min_rec_len(const dict_index_t *index)
Calculates the minimum record length in an index.
Definition: dict0dict.cc:3832
static void dict_index_set_online_status(dict_index_t *index, enum online_index_status status)
Sets the status of online index creation.
static ulint dict_max_field_len_store_undo(dict_table_t *table, const dict_col_t *col)
Determine bytes of column prefix to be stored in the undo log.
void dict_table_load_dynamic_metadata(dict_table_t *table)
Check if there is any latest persistent dynamic metadata recorded in DDTableBuffer table of the speci...
Definition: dict0dict.cc:4133
static dict_index_t * dict_table_get_index_on_first_col(dict_table_t *table, ulint col_index)
Get index by first field of the index.
dict_v_col_t * dict_table_get_nth_v_col_mysql(const dict_table_t *table, ulint col_nr)
Get nth virtual column according to its original MySQL table position.
Definition: dict0dict.cc:744
static enum online_index_status dict_index_get_online_status(const dict_index_t *index)
Gets the status of online index creation.
bool dict_index_contains_col_or_prefix(const dict_index_t *index, ulint n, bool is_virtual)
Returns true if the index contains a column or a prefix of that column.
Definition: dict0dict.cc:1013
static void dict_table_autoinc_set_col_pos(dict_table_t *table, ulint pos)
Set the column position of autoinc column in clustered index for a table.
void dict_table_remove_from_cache(dict_table_t *table)
Removes a table object from the dictionary cache.
Definition: dict0dict.cc:2049
static ulint dict_index_is_spatial(const dict_index_t *index)
Check whether the index is a Spatial Index.
const char * dict_table_get_v_col_name_mysql(const dict_table_t *table, ulint col_nr)
Returns a virtual column's name according to its original MySQL table position.
Definition: dict0dict.cc:729
static space_id_t dict_index_get_space(const dict_index_t *index)
Gets the space id of the root of the index tree.
void get_field_max_size(const dict_table_t *table, const dict_index_t *index, const dict_field_t *field, size_t &rec_max_size)
Get maximum possible size needed for a field.
Definition: dict0dict.cc:2206
static bool dict_table_has_autoinc_col(const dict_table_t *table)
Check if a table has an autoinc counter column.
bool dict_table_is_compressed_temporary(const dict_table_t *table)
Check if a table is a temporary table with compressed row format, we should always expect false.
Definition: dict0dict.ic:635
dtuple_t * dict_index_build_data_tuple(dict_index_t *index, rec_t *rec, ulint n_fields, mem_heap_t *heap)
Builds a typed data tuple out of a physical record.
Definition: dict0dict.cc:3809
dberr_t dd_sdi_acquire_shared_mdl(THD *thd, space_id_t space_id, MDL_ticket **sdi_mdl)
Acquire shared MDL on SDI tables.
Definition: dict0dict.cc:5826
dict_sys_t * dict_sys
the dictionary system
Definition: dict0dict.cc:136
void dict_persist_to_dd_table_buffer()
Check if any table has any dirty persistent data, if so write dirty persistent data of table to mysql...
Definition: dict0dict.cc:4274
static void dict_table_x_lock_indexes(dict_table_t *table)
Obtain exclusive locks on all index trees of the table.
static bool dict_table_has_atomic_blobs(const dict_table_t *table)
Determine if a table uses atomic BLOBs (no locally stored prefix).
Data dictionary system.
Data dictionary memory object creation.
online_index_status
The status of online index creation.
Definition: dict0mem.h:1647
Data dictionary global types.
ib_id_t space_index_t
Index identifier (unique within a tablespace).
Definition: dict0types.h:218
ib_mutex_t DictSysMutex
Definition: dict0types.h:302
dict_err_ignore_t
Error to ignore when we load table dictionary into memory.
Definition: dict0types.h:278
ib_id_t table_id_t
Table or partition identifier (unique within an InnoDB instance).
Definition: dict0types.h:216
Data dictionary system.
File space management.
Multi file, shared, system tablespace implementation.
constexpr size_t FSP_MAX_UNDO_TABLESPACES
The maximum number of non-temporary Undo Tablespaces (implicit + explicit) that can exist at the same...
Definition: fsp0types.h:439
The simple hash table utility.
static void *& hash_get_first(hash_table_t *table, size_t cell_id)
Gets the first struct in a hash chain, NULL if none.
Definition: hash0hash.h:159
#define HASH_GET_NEXT(NAME, DATA)
Gets the next struct in a hash chain, NULL if none.
Definition: hash0hash.h:165
static int flags[50]
Definition: hp_test1.cc:40
The memory management.
std::string format(const routing_guidelines::Session_info &session_info, bool extended_session_info)
Definition: dest_metadata_cache.cc:170
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
const std::string FILE("FILE")
unsigned long long Object_id
Definition: object_id.h:31
Definition: os0file.h:89
bool index(const std::string &value, const String &search_for, uint32_t *idx)
Definition: contains.h:76
static thread_local uint next_id
Definition: content_tree.cc:212
ValueType value(const std::optional< ValueType > &v)
Definition: gtid.h:83
size_t size(const char *const c)
Definition: base64.h:46
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:418
Record manager global types.
byte rec_t
Definition: rem0types.h:41
enum rec_format_enum rec_format_t
Definition: rem0types.h:98
required uint32 status
Definition: replication_asynchronous_connection_failover.proto:61
required uint64 version
Definition: replication_group_member_actions.proto:41
required bool enabled
Definition: replication_group_member_actions.proto:33
Row operation global types.
Server monitor counter related defines.
case opt name
Definition: sslopt-case.h:29
Definition: completion_hash.h:35
Data structure for newly added virtual column in a table.
Definition: dict0mem.h:831
Data structure for a column in a table.
Definition: dict0mem.h:485
Data structure for a field in an index.
Definition: dict0mem.h:891
Data structure for a foreign key constraint; an example: FOREIGN KEY (A, B) REFERENCES TABLE2 (C,...
Definition: dict0mem.h:1675
Data structure for an index.
Definition: dict0mem.h:1069
Structure for persisting dynamic metadata of data dictionary.
Definition: dict0dict.h:1174
Persisters * persisters
Collection of instances to persist dynamic metadata.
Definition: dict0dict.h:1238
ib_mutex_t mutex
Mutex to protect data in this structure, also the dict_table_t::dirty_status and dict_table_t::in_dir...
Definition: dict0dict.h:1221
std::atomic< uint32_t > num_dirty_tables
Number of the tables which are of status METADATA_DIRTY.
Definition: dict0dict.h:1225
std::atomic< bool > m_persist_immediately
If set, dynamic metadata is saved to DD buffer table immediately.
Definition: dict0dict.h:1230
DDTableBuffer * table_buffer
DDTableBuffer table for persistent dynamic metadata.
Definition: dict0dict.h:1234
bool check_persist_immediately() const
Definition: dict0dict.h:1203
dirty_dict_tables
List of tables whose dirty_status are marked as METADATA_DIRTY, or METADATA_BUFFERED.
Definition: dict0dict.h:1210
Definition: dict0dict.h:1013
void for_each_table(Functor &functor)
Iterate each table.
Definition: dict0dict.h:1063
static constexpr space_id_t s_undo_space_id_range
The number of space IDs dedicated to each undo tablespace.
Definition: dict0dict.h:1113
static constexpr space_id_t s_max_undo_space_id
The highest undo tablespace ID.
Definition: dict0dict.h:1120
dict_table_t * ddl_log
Permanent handle to mysql.innodb_ddl_log.
Definition: dict0dict.h:1049
static bool is_reserved(space_id_t space)
Check if a tablespace id is a reserved tablespace ID.
Definition: dict0dict.h:1083
static constexpr space_id_t s_reserved_space_id
The first reserved tablespace ID.
Definition: dict0dict.h:1133
static std::set< dd::Object_id > s_dd_table_ids
Set of ids of DD tables.
Definition: dict0dict.h:1088
static constexpr table_id_t s_dynamic_meta_table_id
The table ID of mysql.innodb_dynamic_metadata.
Definition: dict0dict.h:1167
static constexpr space_id_t s_min_temp_space_id
Lowest temporary general space id.
Definition: dict0dict.h:1129
virtual ~dict_sys_t()=default
static constexpr dd::Object_id s_dd_sys_space_id
The dd::Tablespace::id of innodb_system.
Definition: dict0dict.h:1139
static const char * s_default_undo_space_name_2
Definition: dict0dict.h:1164
UT_LIST_BASE_NODE_T(dict_table_t, table_LRU) Table_LRU_list_base
Definition: dict0dict.h:1052
static const char * s_file_per_table_name
The hard-coded tablespace name innodb_file_per_table.
Definition: dict0dict.h:1160
static constexpr space_id_t s_log_space_id
The first ID of the redo log pseudo-tablespace.
Definition: dict0dict.h:1101
Table_LRU_list_base table_LRU
List of tables that can be evicted from the cache.
Definition: dict0dict.h:1055
static const char * s_dd_space_name
The name of the data dictionary tablespace.
Definition: dict0dict.h:1145
DictSysMutex mutex
mutex protecting the data dictionary; protects also the disk-based dictionary system tables; this mut...
Definition: dict0dict.h:1018
static constexpr space_id_t s_min_undo_space_id
The lowest undo tablespace ID.
Definition: dict0dict.h:1116
static const char * s_temp_space_file_name
The file name of the predefined temporary tablespace.
Definition: dict0dict.h:1157
static bool is_dd_table_id(table_id_t id)
Check if a table is hardcoded.
Definition: dict0dict.h:1096
static const char * s_default_undo_space_name_1
These two undo tablespaces cannot be dropped.
Definition: dict0dict.h:1163
size_t size
varying space in bytes occupied by the data dictionary table and index objects
Definition: dict0dict.h:1042
static const char * s_dd_space_file_name
The file name of the data dictionary tablespace.
Definition: dict0dict.h:1148
Table_LRU_list_base table_non_LRU
List of tables that can't be evicted from the cache.
Definition: dict0dict.h:1057
static constexpr dd::Object_id s_dd_dict_space_id
The dd::Tablespace::id of the dictionary tablespace.
Definition: dict0dict.h:1136
static const char * s_sys_space_name
The name of the hard-coded system tablespace.
Definition: dict0dict.h:1151
static constexpr space_id_t s_temp_space_id
The innodb_temporary tablespace ID.
Definition: dict0dict.h:1110
dict_table_t * index_stats
Permanent handle to mysql.innodb_index_stats.
Definition: dict0dict.h:1047
static constexpr space_id_t s_dict_space_id
The data dictionary tablespace ID.
Definition: dict0dict.h:1107
dict_table_t * table_stats
Permanent handle to mysql.innodb_table_stats.
Definition: dict0dict.h:1045
virtual void dict_hdr_flush_row_id()
Writes the current value of the row id counter to the dictionary header file page.
Definition: dict0boot.cc:155
static constexpr space_index_t s_dynamic_meta_index_id
The clustered index ID of mysql.innodb_dynamic_metadata.
Definition: dict0dict.h:1170
static constexpr space_id_t s_max_temp_space_id
Start space_ids for temporary tablespaces.
Definition: dict0dict.h:1123
std::atomic< row_id_t > row_id
the next row id to assign; NOTE: we only update the DICT_HDR_ROW_ID header once for every DICT_HDR_RO...
Definition: dict0dict.h:1032
static constexpr dd::Object_id s_dd_temp_space_id
The dd::Tablespace::id of innodb_temporary.
Definition: dict0dict.h:1142
static const char * s_temp_space_name
The name of the predefined temporary tablespace.
Definition: dict0dict.h:1154
static constexpr space_id_t s_invalid_space_id
Use maximum UINT value to indicate invalid space ID.
Definition: dict0dict.h:1104
dict_table_t * dynamic_metadata
Permanent handle to mysql.innodb_dynamic_metadata.
Definition: dict0dict.h:1051
static constexpr space_id_t s_temp_space_id_range
The number of space IDs dedicated to temporary tablespaces.
Definition: dict0dict.h:1126
hash_table_t * table_id_hash
hash table of the tables, based on id
Definition: dict0dict.h:1038
hash_table_t * table_hash
hash table of the tables, based on name
Definition: dict0dict.h:1035
Data structure for a database table.
Definition: dict0mem.h:1927
Data structure for a virtual column in a table.
Definition: dict0mem.h:811
Structure defines template related to virtual columns and their base columns.
Definition: dict0mem.h:1864
Structure for an SQL data tuple of fields (logical record)
Definition: data0data.h:706
Definition: ut0vec.h:213
The info structure stored at the beginning of a heap block.
Definition: mem0mem.h:295
Mini-transaction handle and buffer.
Definition: mtr0mtr.h:174
The structure used in the spin lock implementation of a read-write lock.
Definition: sync0rw.h:362
Definition: trx0trx.h:670
Definition: row0upd.h:571
The read-write lock (for threads, not for database transactions)
typedef UT_LIST_BASE_NODE_T(rw_lock_t, list) rw_lock_list_t
Transaction system global type definitions.
ib_id_t row_id_t
Row identifier (DB_ROW_ID, DATA_ROW_ID)
Definition: trx0types.h:132
ib_id_t trx_id_t
Transaction identifier (DB_TRX_ID, DATA_TRX_ID)
Definition: trx0types.h:138
static const space_id_t TRX_SYS_SPACE
Space id of the transaction system page (the system tablespace)
Definition: trx0types.h:52
Version control for database, common definitions, and include files.
#define UNIV_COLD
Definition: univ.i:264
unsigned long int ulint
Definition: univ.i:403
Utilities for byte operations.
Memory primitives.
#define mutex_exit(M)
Definition: ut0mutex.h:122
#define mutex_enter(M)
Definition: ut0mutex.h:116
Dynamic memory allocation routines and custom allocators specifically crafted to support memory instr...
Random numbers and hashing.
uint32_t new_id()
Create a new (hopefully unique) ID.
Definition: xcom_base.cc:1791
int n
Definition: xcom_base.cc:509