MySQL 9.6.0
Source Code Documentation
dict0dict.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 1996, 2025, 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 */
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/** Write redo logs for autoinc counter that is to be inserted, or to
231update some existing smaller one to bigger.
232@param[in,out] table InnoDB table object
233@param[in] value AUTOINC counter to log
234@param[in,out] mtr Mini-transaction
235@return true if auto increment needs to be persisted to DD table buffer. */
237
238/** Check if a table has an autoinc counter column.
239@param[in] table table
240@return true if there is an autoinc column in the table, otherwise false. */
242
243#endif /* !UNIV_HOTBACKUP */
244
245/** Adds system columns to a table object.
246@param[in,out] table Table
247@param[in] heap Temporary heap */
249
250#ifndef UNIV_HOTBACKUP
251/** Mark if table has big rows.
252@param[in,out] table table handler */
253void dict_table_set_big_rows(dict_table_t *table) MY_ATTRIBUTE((nonnull));
254
255/** Adds a table object to the dictionary cache.
256@param[in,out] table table
257@param[in] can_be_evicted true if can be evicted */
258void dict_table_add_to_cache(dict_table_t *table, bool can_be_evicted);
259
260/** Removes a table object from the dictionary cache. */
261void dict_table_remove_from_cache(dict_table_t *table); /*!< in, own: table */
262
263/** Try to invalidate an entry from the dict cache, for a partitioned table,
264if any table found.
265@param[in] name Table name */
267
268#ifdef UNIV_DEBUG
269/** Removes a table object from the dictionary cache, for debug purpose
270@param[in,out] table table object
271@param[in] lru_evict true if table being evicted to make room
272 in the table LRU list */
274#endif /* UNIV_DEBUG */
275
276/** Renames a table object.
277 @return true if success */
279 dict_table_t *table, /*!< in/out: table */
280 const char *new_name, /*!< in: new name */
281 bool rename_also_foreigns);
282/*!< in: in ALTER TABLE we want
283to preserve the original table name
284in constraints which reference it */
285
286/** Removes an index from the dictionary cache.
287@param[in,out] table table whose index to remove
288@param[in,out] index index to remove, this object is destroyed and must not
289be accessed by the caller afterwards */
291
292/** Gathers ids of all tables in cache at the moment.
293@return ids of all tables */
294std::vector<table_id_t> dict_get_all_table_ids();
295
296/** Change the id of a table object in the dictionary cache. This is used in
297 DISCARD TABLESPACE. */
299 dict_table_t *table, /*!< in/out: table object already in cache */
300 table_id_t new_id); /*!< in: new id to set */
301/** Removes a foreign constraint struct from the dictionary cache. */
303 dict_foreign_t *foreign); /*!< in, own: foreign constraint */
304/** Adds a foreign key constraint object to the dictionary cache. May free
305 the object if there already is an object with the same identifier in.
306 At least one of foreign table or referenced table must already be in
307 the dictionary cache!
308 @return DB_SUCCESS or error code */
310 dict_foreign_t *foreign,
311 /*!< in, own: foreign key constraint */
312 const char **col_names,
313 /*!< in: column names, or NULL to use
314 foreign->foreign_table->col_names */
315 bool check_charsets,
316 /*!< in: whether to check charset
317 compatibility */
318 bool can_free_fk,
319 /*!< in: whether free existing FK */
320 dict_err_ignore_t ignore_err);
321/*!< in: error to be ignored */
322/** Checks if a table is referenced by foreign keys.
323 @return true if table is referenced by a foreign key */
325 const dict_table_t *table); /*!< in: InnoDB table */
326/** Replace the index passed in with another equivalent index in the
327 foreign key lists of the table.
328 @return whether all replacements were found */
329[[nodiscard]] bool dict_foreign_replace_index(
330 dict_table_t *table, /*!< in/out: table */
331 const char **col_names,
332 /*!< in: column names, or NULL
333 to use table->col_names */
334 const dict_index_t *index); /*!< in: index to be replaced */
335#endif /* !UNIV_HOTBACKUP */
336
337/** Tries to find an index whose first fields are the columns in the array,
338 in the same order and is not marked for deletion and is not the same
339 as types_idx.
340 @return matching index, NULL if not found */
342 const dict_table_t *table, /*!< in: table */
343 const char **col_names,
344 /*!< in: column names, or NULL
345 to use table->col_names */
346 const char **columns, /*!< in: array of column names */
347 ulint n_cols, /*!< in: number of columns */
348 const dict_index_t *types_idx,
349 /*!< in: NULL or an index
350 whose types the column types
351 must match */
352 bool check_charsets,
353 /*!< in: whether to check
354 charsets. only has an effect
355 if types_idx != NULL */
356 ulint check_null);
357/*!< in: nonzero if none of
358the columns must be declared
359NOT NULL */
360
361/** Returns a virtual column's name.
362@param[in] table target table
363@param[in] col_nr virtual column number (nth virtual column)
364@return column name or NULL if column number out of range. */
365const char *dict_table_get_v_col_name(const dict_table_t *table, ulint col_nr);
366
367/** Check if the table has a given (non_virtual) column.
368@param[in] table table object
369@param[in] col_name column name
370@param[in] col_nr column number guessed, 0 as default
371@return column number if the table has the specified column,
372otherwise table->n_def */
373ulint dict_table_has_column(const dict_table_t *table, const char *col_name,
374 ulint col_nr = 0);
375
376/** Outputs info on a foreign key of a table in a format suitable for
377 CREATE TABLE.
378@param[in] file File where to print
379@param[in] trx Transaction
380@param[in] foreign Foreign key constraint
381@param[in] add_newline Whether to add a newline */
383 dict_foreign_t *foreign,
384 bool add_newline);
385
386/** Tries to find an index whose first fields are the columns in the array,
387 in the same order and is not marked for deletion and is not the same
388 as types_idx.
389 @return matching index, NULL if not found */
390[[nodiscard]] bool dict_foreign_qualify_index(
391 const dict_table_t *table, /*!< in: table */
392 const char **col_names,
393 /*!< in: column names, or NULL
394 to use table->col_names */
395 const char **columns, /*!< in: array of column names */
396 ulint n_cols, /*!< in: number of columns */
397 const dict_index_t *index, /*!< in: index to check */
398 const dict_index_t *types_idx,
399 /*!< in: NULL or an index
400 whose types the column types
401 must match */
402 bool check_charsets,
403 /*!< in: whether to check
404 charsets. only has an effect
405 if types_idx != NULL */
406 ulint check_null);
407/*!< in: nonzero if none of
408the columns must be declared
409NOT NULL */
410
411/* Skip corrupted index */
413 while (index && index->is_corrupted()) {
414 index = index->next();
415 }
416}
417
418/* Get the next non-corrupt index */
420 index = index->next();
422}
423
424/** Check if index is auto-generated clustered index.
425@param[in] index index
426
427@return true if index is auto-generated clustered index. */
429
430/** Check whether the index is unique.
431 @return nonzero for unique index, zero for other indexes */
432[[nodiscard]] static inline ulint dict_index_is_unique(
433 const dict_index_t *index); /*!< in: index */
434/** Check whether the index is a Spatial Index.
435 @return nonzero for Spatial Index, zero for other indexes */
436[[nodiscard]] static inline ulint dict_index_is_spatial(
437 const dict_index_t *index); /*!< in: index */
438/** Check whether the index contains a virtual column.
439@param[in] index index
440@return nonzero for index on virtual column, zero for other indexes */
442/** Check whether the index is the insert buffer tree.
443 @return nonzero for insert buffer, zero for other indexes */
444[[nodiscard]] static inline ulint dict_index_is_ibuf(
445 const dict_index_t *index); /*!< in: index */
446
447/** Check whether the index consists of descending columns only.
448@param[in] index index tree
449@retval true if index has any descending column
450@retval false if index has only ascending columns */
451[[nodiscard]] static inline bool dict_index_has_desc(const dict_index_t *index);
452/** Check whether the index is a secondary index or the insert buffer tree.
453 @return nonzero for insert buffer, zero for other indexes */
454[[nodiscard]] static inline ulint dict_index_is_sec_or_ibuf(
455 const dict_index_t *index); /*!< in: index */
456
457/** Get all the FTS indexes on a table.
458@param[in] table table
459@param[out] indexes all FTS indexes on this table
460@return number of FTS indexes */
462
464
465/** Gets the number of virtual columns in a table in the dictionary cache.
466@param[in] table the table to check
467@return number of virtual columns of a table */
469
470/** Check if a table has indexed virtual columns
471@param[in] table the table to check
472@return true is the table has indexed virtual columns */
474
475#ifndef UNIV_HOTBACKUP
476/** Gets the approximately estimated number of rows in the table.
477 @return estimated number of rows */
478[[nodiscard]] static inline uint64_t dict_table_get_n_rows(
479 const dict_table_t *table); /*!< in: table */
480/** Increment the number of rows in the table by one.
481 Notice that this operation is not protected by any latch, the number is
482 approximate. */
483static inline void dict_table_n_rows_inc(
484 dict_table_t *table); /*!< in/out: table */
485/** Decrement the number of rows in the table by one.
486 Notice that this operation is not protected by any latch, the number is
487 approximate. */
488static inline void dict_table_n_rows_dec(
489 dict_table_t *table); /*!< in/out: table */
490#endif /* !UNIV_HOTBACKUP */
491
492/** Get nth virtual column according to its original MySQL table position
493@param[in] table target table
494@param[in] col_nr column number in MySQL Table definition
495@return dict_v_col_t ptr */
497 ulint col_nr);
498
499#ifdef UNIV_DEBUG
500/** Gets the nth virtual column of a table.
501@param[in] table table
502@param[in] pos position of virtual column
503@return pointer to virtual column object */
505 ulint pos);
506
507#else /* UNIV_DEBUG */
508/* Get nth virtual columns */
509#define dict_table_get_nth_v_col(table, pos) ((table)->v_cols + (pos))
510#endif /* UNIV_DEBUG */
511/** Gets the given system column number of a table.
512@param[in] table Table.
513@param[in] sys DATA_ROW_ID, ...
514@return column number */
515[[nodiscard]] static inline ulint dict_table_get_sys_col_no(
516 const dict_table_t *table, ulint sys);
517/** Check whether the table uses the compact page format.
518 @return true if table uses the compact page format */
519[[nodiscard]] static inline bool dict_table_is_comp(
520 const dict_table_t *table); /*!< in: table */
521
522/** Determine if a table uses atomic BLOBs (no locally stored prefix).
523@param[in] table InnoDB table
524@return whether BLOBs are atomic */
525[[nodiscard]] static inline bool dict_table_has_atomic_blobs(
526 const dict_table_t *table);
527
528#ifndef UNIV_HOTBACKUP
529/** Set the various values in a dict_table_t::flags pointer.
530@param[in,out] flags Pointer to a 4 byte Table Flags
531@param[in] format File Format
532@param[in] zip_ssize Zip Shift Size
533@param[in] use_data_dir Table uses DATA DIRECTORY
534@param[in] shared_space Table uses a General Shared Tablespace */
535static inline void dict_tf_set(uint32_t *flags, rec_format_t format,
536 uint32_t zip_ssize, bool use_data_dir,
537 bool shared_space);
538
539/** Initialize a dict_table_t::flags pointer.
540@param[in] compact Table uses Compact or greater
541@param[in] zip_ssize Zip Shift Size (log 2 minus 9)
542@param[in] atomic_blobs Table uses Compressed or Dynamic
543@param[in] data_dir Table uses DATA DIRECTORY
544@param[in] shared_space Table uses a General Shared Tablespace */
545static inline uint32_t dict_tf_init(bool compact, ulint zip_ssize,
546 bool atomic_blobs, bool data_dir,
547 bool shared_space);
548
549/** Convert a 32 bit integer table flags to the 32 bit FSP Flags.
550Fsp Flags are written into the tablespace header at the offset
551FSP_SPACE_FLAGS and are also stored in the fil_space_t::flags field.
552The following chart shows the translation of the low order bit.
553Other bits are the same.
554========================= Low order bit ==========================
555 | REDUNDANT | COMPACT | COMPRESSED | DYNAMIC
556dict_table_t::flags | 0 | 1 | 1 | 1
557fil_space_t::flags | 0 | 0 | 1 | 1
558==================================================================
559@param[in] table_flags dict_table_t::flags
560@return tablespace flags (fil_space_t::flags) */
561uint32_t dict_tf_to_fsp_flags(uint32_t table_flags);
562
563/** Extract the page size info from table flags.
564@param[in] flags flags
565@return a structure containing the compressed and uncompressed
566page sizes and a boolean indicating if the page is compressed. */
567static inline const page_size_t dict_tf_get_page_size(uint32_t flags);
568
569#endif /* !UNIV_HOTBACKUP */
570
571/** Determine the extent size (in pages) for the given table
572@param[in] table the table whose extent size is being
573 calculated.
574@return extent size in pages (256, 128 or 64) */
576
577/** Get the table page size.
578@param[in] table table
579@return compressed page size, or 0 if not compressed */
580[[nodiscard]] static inline const page_size_t dict_table_page_size(
581 const dict_table_t *table);
582
583#ifndef UNIV_HOTBACKUP
584/** Obtain exclusive locks on all index trees of the table. This is to prevent
585 accessing index trees while InnoDB is updating internal metadata for
586 operations such as FLUSH TABLES. */
587static inline void dict_table_x_lock_indexes(
588 dict_table_t *table); /*!< in: table */
589/** Release the exclusive locks on all index tree. */
591 dict_table_t *table); /*!< in: table */
592/** Check if the table has an FTS index.
593 @return true if table has an FTS index */
594[[nodiscard]] static inline bool dict_table_has_fts_index(
595 dict_table_t *table); /*!< in: table */
596#ifdef UNIV_DEBUG
597/** Validate no active background threads to cause purge or rollback
598 operations. */
600#endif /* UNIV_DEBUG */
601#endif /* !UNIV_HOTBACKUP */
602/** Checks if a column is in the ordering columns of the clustered index of a
603 table. Column prefixes are treated like whole columns.
604 @return true if the column, or its prefix, is in the clustered key */
605[[nodiscard]] bool dict_table_col_in_clustered_key(
606 const dict_table_t *table, /*!< in: table */
607 ulint n); /*!< in: column number */
608/** Copies types of virtual columns contained in table to tuple and sets all
609fields of the tuple to the SQL NULL value. This function should
610be called right after dtuple_create().
611@param[in,out] tuple data tuple
612@param[in] table table */
614/** Copies types of columns contained in table to tuple and sets all
615 fields of the tuple to the SQL NULL value. This function should
616 be called right after dtuple_create(). */
617void dict_table_copy_types(dtuple_t *tuple, /*!< in/out: data tuple */
618 const dict_table_t *table); /*!< in: table */
619#ifndef UNIV_HOTBACKUP
620/********************************************************************
621Wait until all the background threads of the given table have exited, i.e.,
622bg_threads == 0. Note: bg_threads_mutex must be reserved when
623calling this. */
625 dict_table_t *table, /* in: table */
626 std::chrono::microseconds delay); /* in: time to wait between
627 checks of bg_threads. */
628
629/** Look up an index among already opened tables. Does not attempt to open
630tables that are not available in the dictionary cache. This behaviour is fine
631for information schema's scenarios - use dd_table_open_on_id() if you need
632to access index meta-data reliably.
633@param[in] id index identifier
634@return index or NULL if not found */
635[[nodiscard]] const dict_index_t *dict_index_find(const index_id_t &id);
636
637/** Make room in the table cache by evicting an unused table. The unused table
638 should not be part of FK relationship and currently not used in any user
639 transaction. There is no guarantee that it will remove a table.
640 @return number of tables evicted. */
642 ulint max_tables, /*!< in: max tables allowed in cache */
643 ulint pct_check); /*!< in: max percent to check */
644
645constexpr uint32_t BIG_ROW_SIZE = 1024;
646
647/** Adds an index to the dictionary cache.
648@param[in,out] table table on which the index is
649@param[in,out] index index; NOTE! The index memory
650 object is freed in this function!
651@param[in] page_no root page number of the index
652@param[in] strict true=refuse to create the index
653 if records could be too big to fit in
654 an B-tree page
655@return DB_SUCCESS, DB_TOO_BIG_RECORD, or DB_CORRUPTION */
658 page_no_t page_no, bool strict);
659
660/** Clears the virtual column's index list before index is being freed.
661@param[in] index Index being freed */
663
664/** Adds an index to the dictionary cache, with possible indexing newly
665added column.
666@param[in,out] table table on which the index is
667@param[in,out] index index; NOTE! The index memory
668 object is freed in this function!
669@param[in] add_v new virtual column that being added along with
670 an add index call
671@param[in] page_no root page number of the index
672@param[in] strict true=refuse to create the index
673 if records could be too big to fit in
674 an B-tree page
675@return DB_SUCCESS, DB_TOO_BIG_RECORD, or DB_CORRUPTION */
678 page_no_t page_no, bool strict);
679#endif /* !UNIV_HOTBACKUP */
680/** Gets the number of fields in the internal representation of an index,
681 including fields added by the dictionary system.
682 @return number of fields */
683[[nodiscard]] inline uint16_t dict_index_get_n_fields(
684 const dict_index_t *index); /*!< in: an internal
685 representation of index (in
686 the dictionary cache) */
687/** Gets the number of fields in the internal representation of an index
688 that uniquely determine the position of an index entry in the index, if
689 we do not take multiversioning into account: in the B-tree use the value
690 returned by dict_index_get_n_unique_in_tree.
691 @return number of fields */
692[[nodiscard]] inline uint16_t dict_index_get_n_unique(
693 const dict_index_t *index); /*!< in: an internal representation
694 of index (in the dictionary cache) */
695/** Gets the number of fields in the internal representation of an index
696 which uniquely determine the position of an index entry in the index, if
697 we also take multiversioning into account.
698 @return number of fields */
699[[nodiscard]] inline uint16_t dict_index_get_n_unique_in_tree(
700 const dict_index_t *index); /*!< in: an internal representation
701 of index (in the dictionary cache) */
702
703/** The number of fields in the nonleaf page of spatial index, except
704the page no field. */
705constexpr uint32_t DICT_INDEX_SPATIAL_NODEPTR_SIZE = 1;
706/**
707Gets the number of fields on nonleaf page level in the internal representation
708of an index which uniquely determine the position of an index entry in the
709index, if we also take multiversioning into account. Note, it doesn't
710include page no field.
711@param[in] index index
712@return number of fields */
713[[nodiscard]] inline uint16_t dict_index_get_n_unique_in_tree_nonleaf(
714 const dict_index_t *index);
715/** Gets the number of user-defined ordering fields in the index. In the
716 internal representation we add the row id to the ordering fields to make all
717 indexes unique, but this function returns the number of fields the user defined
718 in the index as ordering fields.
719 @return number of fields */
721 const dict_index_t *index); /*!< in: an internal representation
722 of index (in the dictionary cache) */
723/** Returns true if the index contains a column or a prefix of that column.
724@param[in] index index
725@param[in] n column number
726@param[in] is_virtual whether it is a virtual col
727@return true if contains the column or its prefix */
729 ulint n, bool is_virtual);
730/** Looks for a matching field in an index. The column has to be the same. The
731 column in index must be complete, or must contain a prefix longer than the
732 column in index2. That is, we must be able to construct the prefix in index2
733 from the prefix in index.
734 @return position in internal representation of the index;
735 ULINT_UNDEFINED if not contained */
737 const dict_index_t *index, /*!< in: index from which to search */
738 const dict_index_t *index2, /*!< in: index */
739 ulint n); /*!< in: field number in index2 */
740/** Looks for non-virtual column n position in the clustered index.
741 @return position in internal representation of the clustered index */
743 const dict_table_t *table, /*!< in: table */
744 ulint n); /*!< in: column number */
745
746/** Get the innodb column position for a non-virtual column according to
747its original MySQL table position n
748@param[in] table table
749@param[in] n MySQL column position
750@return column position in InnoDB */
752
753/** Copies types of fields contained in index to tuple.
754@param[in,out] tuple Data tuple
755@param[in] index Index
756@param[in] n_fields Number of field types to copy */
758 ulint n_fields);
759
760#ifdef UNIV_DEBUG
761/** Checks that a tuple has n_fields_cmp value in a sensible range, so that
762 no comparison can occur with the page number field in a node pointer.
763 @return true if ok */
764[[nodiscard]] bool dict_index_check_search_tuple(
765 const dict_index_t *index, /*!< in: index tree */
766 const dtuple_t *tuple); /*!< in: tuple used in a search */
767/** Whether and when to allow temporary index names */
769 /** Require all indexes to be complete. */
771 /** Allow aborted online index creation. */
773 /** Allow partial indexes to exist. */
776
777/** Check for duplicate index entries in a table [using the index name]
778@param[in] table Check for dup indexes in this table
779@param[in] check Whether and when to allow temporary index names */
781 enum check_name check);
782
783/** Check if a table is a temporary table with compressed row format,
784we should always expect false.
785@param[in] table table
786@return true if it's a compressed temporary table, false otherwise */
788#endif /* UNIV_DEBUG */
789/** Builds a node pointer out of a physical record and a page number.
790 @return own: node pointer */
792 const dict_index_t *index, /*!< in: index */
793 const rec_t *rec, /*!< in: record for which
794 to build node pointer */
795 page_no_t page_no, /*!< in: page number to
796 put in node pointer */
797 mem_heap_t *heap, /*!< in: memory heap where
798 pointer created */
799 ulint level); /*!< in: level of rec in tree:
800 0 means leaf level */
801/** Copies an initial segment of a physical record, long enough to specify an
802index entry uniquely. In case buf is nullptr or the buf_size is not enough to
803store the prefix, the new buffer will be allocated.
804@param[in] index index
805@param[in] rec record for which to copy prefix
806@param[out] n_fields number of fields copied
807@param[in,out] buf memory buffer for the copied prefix, or nullptr
808@param[in,out] buf_size buffer size, size of allocated buffer
809@return pointer to the prefix record */
811 const rec_t *rec,
812 ulint *n_fields,
813 byte **buf,
814 size_t *buf_size);
815/** Builds a typed data tuple out of a physical record.
816 @return own: data tuple */
818 dict_index_t *index, /*!< in: index */
819 rec_t *rec, /*!< in: record for which to build data tuple */
820 ulint n_fields, /*!< in: number of data fields */
821 mem_heap_t *heap); /*!< in: memory heap where tuple created */
822/** Gets the space id of the root of the index tree.
823 @return space id */
824[[nodiscard]] static inline space_id_t dict_index_get_space(
825 const dict_index_t *index); /*!< in: index */
826
827/** Sets the space id of the root of the index tree.
828@param[in,out] index index
829@param[in] space space id */
831
832/** Gets the page number of the root of the index tree.
833 @return page number */
834[[nodiscard]] static inline page_no_t dict_index_get_page(
835 const dict_index_t *tree); /*!< in: index */
836/** Gets the read-write lock of the index tree.
837 @return read-write lock */
838[[nodiscard]] static inline rw_lock_t *dict_index_get_lock(
839 dict_index_t *index); /*!< in: index */
840/** Returns free space reserved for future updates of records. This is
841 relevant only in the case of many consecutive inserts, as updates
842 which make the records bigger might fragment the index.
843 @return number of free bytes on page, reserved for updates */
845
846/* Online index creation @{ */
847/** Gets the status of online index creation.
848 @return the status */
849[[nodiscard]] static inline enum online_index_status
851 const dict_index_t *index); /*!< in: secondary index */
852
853/** Sets the status of online index creation.
854@param[in,out] index index
855@param[in] status status */
858
859/** Determines if a secondary index is being or has been created online,
860 or if the table is being rebuilt online, allowing concurrent modifications
861 to the table.
862 @retval true if the index is being or has been built online, or
863 if this is a clustered index and the table is being or has been rebuilt online
864 @retval false if the index has been created or the table has been
865 rebuilt completely */
866[[nodiscard]] static inline bool dict_index_is_online_ddl(
867 const dict_index_t *index); /*!< in: index */
868/** Calculates the minimum record length in an index. */
870 const dict_index_t *index); /*!< in: index */
871/** Reserves the dictionary system mutex for MySQL. */
873/** Releases the dictionary system mutex for MySQL. */
875
876#ifndef UNIV_HOTBACKUP
877/** Create a dict_table_t's stats latch or delay for lazy creation.
878This function is only called from either single threaded environment
879or from a thread that has not shared the table object with other threads.
880@param[in,out] table table whose stats latch to create
881@param[in] enabled if false then the latch is disabled
882and dict_table_stats_lock()/unlock() become noop on this table. */
884
885/** Create a dict_table_t's stats compute mutex or delay for lazy creation.
886This function is only called from either single threaded environment
887or from a thread that has not shared the table object with other threads.
888@param[in,out] table table whose stats compute mutex to create
889@param[in] enabled if false then the latch is disabled
890and dict_table_stats_compute_lock()/unlock() become noop on this table. */
892 bool enabled);
893
894/** Destroy a dict_table_t's stats latch.
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 latch to destroy */
899
900/** Destroy a dict_table_t's stats compute mutex.
901This function is only called from either single threaded environment
902or from a thread that has not shared the table object with other threads.
903@param[in,out] table table whose stats compute mutex to destroy */
905
906/** Lock the appropriate latch to protect a given table's statistics.
907@param[in] table table whose stats to lock
908@param[in] latch_mode RW_S_LATCH or RW_X_LATCH */
910
911/** Unlock the latch that has been locked by dict_table_stats_lock().
912@param[in] table table whose stats to unlock
913@param[in] latch_mode RW_S_LATCH or RW_X_LATCH */
915
916/** Acquire table's statistics compute lock.
917@param[in] table table whose stats to lock */
919
920/** Unlock the lock locked by dict_table_stats_compute_lock().
921@param[in] table table whose stats to unlock */
923
924/** Checks if the database name in two table names is the same.
925 @return true if same db name */
926[[nodiscard]] bool dict_tables_have_same_db(
927 const char *name1, /*!< in: table name in the
928 form dbname '/' tablename */
929 const char *name2); /*!< in: table name in the
930 form dbname '/' tablename */
931/** Get an index by name.
932@param[in] table the table where to look for the index
933@param[in] name the index name to look for
934@param[in] committed true=search for committed,
935false=search for uncommitted
936@return index, NULL if does not exist */
938 const char *name,
939 bool committed = true);
940/** Get an index by name.
941@param[in] table the table where to look for the index
942@param[in] name the index name to look for
943@param[in] committed true=search for committed,
944false=search for uncommitted
945@return index, NULL if does not exist */
947 const dict_table_t *table, const char *name, bool committed = true) {
948 return (dict_table_get_index_on_name(const_cast<dict_table_t *>(table), name,
949 committed));
950}
951
952/** Check whether a column exists in an FTS index.
953@param[in] indexes Vector containing only FTS indexes
954@param[in] col_no Column number to search for.
955@param[in] is_virtual Whether it is a virtual column.
956@return ULINT_UNDEFINED if no match else the offset within the vector. */
957[[nodiscard]] static inline ulint dict_table_is_fts_column(ib_vector_t *indexes,
958 ulint col_no,
959 bool is_virtual);
960/** Prevent table eviction by moving a table to the non-LRU list from the
961 LRU list if it is not already there. */
963 dict_table_t *table); /*!< in: table to prevent eviction */
964
965/** Allow the table to be evicted by moving a table to the LRU list from
966the non-LRU list if it is not already there.
967@param[in] table InnoDB table object can be evicted */
969
970/** Move this table to non-LRU list for DDL operations if it's
971currently not there. This also prevents later opening table via DD objects,
972when the table name in InnoDB doesn't match with DD object.
973@param[in,out] table Table to put in non-LRU list */
975
976/** Move this table to LRU list after DDL operations if it was moved
977to non-LRU list
978@param[in,out] table Table to put in LRU list */
980
981/** Move a table to the non LRU end of the LRU list. */
983 dict_table_t *table); /*!< in: table to move from LRU to non-LRU */
984
985/** Move a table to the LRU end from the non LRU list.
986@param[in] table InnoDB table object */
988
989/** Move to the most recently used segment of the LRU list. */
990void dict_move_to_mru(dict_table_t *table); /*!< in: table to move to MRU */
991
992/** Maximum number of columns in a foreign key constraint. Please Note MySQL
993has a much lower limit on the number of columns allowed in a foreign key
994constraint */
995constexpr uint32_t MAX_NUM_FK_COLUMNS = 500;
996
997/* Buffers for storing detailed information about the latest foreign key
998and unique key errors */
1000extern ib_mutex_t dict_foreign_err_mutex; /* mutex protecting the
1001 foreign key error messages */
1002#endif /* !UNIV_HOTBACKUP */
1003
1004/** the dictionary system */
1005extern dict_sys_t *dict_sys;
1006#ifndef UNIV_HOTBACKUP
1007/** the data dictionary rw-latch protecting dict_sys */
1009
1010/** Forward declaration */
1011class DDTableBuffer;
1012#endif /* !UNIV_HOTBACKUP */
1013struct dict_persist_t;
1014
1015/** the dictionary persisting structure */
1017
1018/* Dictionary system struct */
1020#ifndef UNIV_HOTBACKUP
1021 /** mutex protecting the data dictionary; protects also the disk-based
1022 dictionary system tables; this mutex serializes CREATE TABLE and DROP TABLE,
1023 as well as reading the dictionary data for a table from system tables */
1025
1026 /** Writes the current value of the row id counter to the dictionary header
1027 file page. */
1028 virtual void dict_hdr_flush_row_id();
1029
1030 virtual ~dict_sys_t() = default;
1031#endif /* !UNIV_HOTBACKUP */
1032
1033 /** the next row id to assign; NOTE: we only update the DICT_HDR_ROW_ID header
1034 once for every DICT_HDR_ROW_ID_WRITE_MARGIN increments, which means that after
1035 crash recovery the value found in this header might be smaller than the value
1036 in some of the rows. This is why we add DICT_HDR_ROW_ID_WRITE_MARGIN to it
1037 after recovery to prevent duplicates. */
1038 std::atomic<row_id_t> row_id;
1039
1040 /** hash table of the tables, based on name */
1042
1043 /** hash table of the tables, based on id*/
1045
1046 /** varying space in bytes occupied by the data dictionary table and index
1047 objects */
1048 size_t size;
1049
1050 /** Permanent handle to mysql.innodb_table_stats */
1052 /** Permanent handle to mysql.innodb_index_stats */
1054 /** Permanent handle to mysql.innodb_ddl_log */
1056 /** Permanent handle to mysql.innodb_dynamic_metadata */
1059
1060 /** List of tables that can be evicted from the cache */
1062 /** List of tables that can't be evicted from the cache */
1064
1065 /** Iterate each table.
1066 @tparam Functor visitor
1067 @param[in,out] functor to be invoked on each table */
1068 template <typename Functor>
1069 void for_each_table(Functor &functor) {
1071
1073 const auto n_cells = hash->get_n_cells();
1074 for (ulint i = 0; i < n_cells; i++) {
1075 for (dict_table_t *table =
1076 static_cast<dict_table_t *>(hash_get_first(hash, i));
1077 table;
1078 table = static_cast<dict_table_t *>(HASH_GET_NEXT(id_hash, table))) {
1079 functor(table);
1080 }
1081 }
1082
1083 mutex_exit(&mutex);
1084 }
1085
1086 /** Check if a tablespace id is a reserved tablespace ID
1087 @param[in] space tablespace id to check
1088 @return true if a reserved tablespace id, otherwise false */
1089 static bool is_reserved(space_id_t space) {
1090 return (space >= dict_sys_t::s_reserved_space_id);
1091 }
1092
1093 /** Set of ids of DD tables */
1094 static std::set<dd::Object_id> s_dd_table_ids;
1095
1096 /** Check if a table is hardcoded. it only includes the dd tables
1097 @param[in] id table ID
1098 @retval true if the table is a persistent hard-coded table
1099 (dict_table_t::is_temporary() will not hold)
1100 @retval false if the table is not hard-coded
1101 (it can be persistent or temporary) */
1102 static bool is_dd_table_id(table_id_t id) {
1103 return (s_dd_table_ids.find(id) != s_dd_table_ids.end());
1104 }
1105
1106 /** The first ID of the redo log pseudo-tablespace */
1107 static constexpr space_id_t s_log_space_id = 0xFFFFFFF0UL;
1108
1109 /** Use maximum UINT value to indicate invalid space ID. */
1110 static constexpr space_id_t s_invalid_space_id = 0xFFFFFFFF;
1111
1112 /** The data dictionary tablespace ID. */
1113 static constexpr space_id_t s_dict_space_id = 0xFFFFFFFE;
1114
1115 /** The innodb_temporary tablespace ID. */
1116 static constexpr space_id_t s_temp_space_id = 0xFFFFFFFD;
1117
1118 /** The number of space IDs dedicated to each undo tablespace */
1119 static constexpr space_id_t s_undo_space_id_range = 400000;
1120
1121 /** The lowest undo tablespace ID. */
1124
1125 /** The highest undo tablespace ID. */
1127
1128 /** Start space_ids for temporary tablespaces. */
1130
1131 /** The number of space IDs dedicated to temporary tablespaces */
1132 static constexpr space_id_t s_temp_space_id_range = 400000;
1133
1134 /** Lowest temporary general space id */
1137
1138 /** The first reserved tablespace ID */
1140
1141 /** The dd::Tablespace::id of the dictionary tablespace. */
1142 static constexpr dd::Object_id s_dd_dict_space_id = 1;
1143
1144 /** The dd::Tablespace::id of innodb_system. */
1145 static constexpr dd::Object_id s_dd_sys_space_id = 2;
1146
1147 /** The dd::Tablespace::id of innodb_temporary. */
1148 static constexpr dd::Object_id s_dd_temp_space_id = 3;
1149
1150 /** The name of the data dictionary tablespace. */
1151 static const char *s_dd_space_name;
1152
1153 /** The file name of the data dictionary tablespace. */
1154 static const char *s_dd_space_file_name;
1155
1156 /** The name of the hard-coded system tablespace. */
1157 static const char *s_sys_space_name;
1158
1159 /** The name of the predefined temporary tablespace. */
1160 static const char *s_temp_space_name;
1161
1162 /** The file name of the predefined temporary tablespace. */
1163 static const char *s_temp_space_file_name;
1164
1165 /** The hard-coded tablespace name innodb_file_per_table. */
1166 static const char *s_file_per_table_name;
1167
1168 /** These two undo tablespaces cannot be dropped. */
1171
1172 /** The table ID of mysql.innodb_dynamic_metadata */
1174
1175 /** The clustered index ID of mysql.innodb_dynamic_metadata */
1177};
1178
1179/** Structure for persisting dynamic metadata of data dictionary */
1181#ifndef UNIV_HOTBACKUP
1182 /** Write dynamic metadata to DD buffer table immediately when such data is
1183 generated. By default, the metadata is first written to redo log and then to
1184 the DD buffer table during checkpoint. This is going to hurt auto increment
1185 performance and Currently enabled by clone for short time to eliminate
1186 dependency with dynamic metadata recovered from redo log. */
1188 public:
1189 /** Constructor to immediate persisting mode.
1190 @param[in,out] persister dictionary persister */
1191 Enable_immediate(dict_persist_t *persister);
1192
1193 /** Destructor to switch back to default mode. */
1195
1196 /** Disable copy construction */
1198
1199 /** Disable assignment */
1201
1202 private:
1203 /** Dictionary persister */
1205 };
1206
1207 /** @return true if need to write dynamic metadata to DD buffer table
1208 immediately after logging. */
1210 return m_persist_immediately.load();
1211 }
1212
1213 /** List of tables whose dirty_status are marked as METADATA_DIRTY,
1214 or METADATA_BUFFERED. It's protected by the mutex */
1217#endif
1218
1219 /** Mutex to protect data in this structure, also the
1220 dict_table_t::dirty_status and
1221 dict_table_t::in_dirty_dict_tables_list
1222 This mutex should be low-level one so that it can be used widely
1223 when necessary, so its level had to be above SYNC_LOG. However,
1224 after this mutex, persister may have to access B-tree and require
1225 tree latch, the latch level of this mutex then has to be right
1226 before the SYNC_INDEX_TREE. */
1227 ib_mutex_t mutex;
1228
1229 /** Number of the tables which are of status METADATA_DIRTY.
1230 It's protected by the mutex */
1231 std::atomic<uint32_t> num_dirty_tables;
1232
1233 /** If set, dynamic metadata is saved to DD buffer table immediately.
1234 Currently we consider only auto increment PM_TABLE_AUTO_INC. Corrupt
1235 index PM_INDEX_CORRUPTED is not needed to be saved immediately. */
1236 std::atomic<bool> m_persist_immediately;
1237
1238#ifndef UNIV_HOTBACKUP
1239 /** DDTableBuffer table for persistent dynamic metadata */
1241#endif /* !UNIV_HOTBACKUP */
1242
1243 /** Collection of instances to persist dynamic metadata */
1245};
1246
1247#ifndef UNIV_HOTBACKUP
1248/** dummy index for ROW_FORMAT=REDUNDANT supremum and infimum records */
1250
1251/** Inits dict_ind_redundant. */
1252void dict_ind_init();
1253
1254/** Converts a database and table name from filesystem encoding (e.g.
1255"@code d@i1b/a@q1b@1Kc @endcode", same format as used in dict_table_t::name)
1256in two strings in UTF8MB3 encoding (e.g. dцb and aюbØc). The output buffers must
1257be at least MAX_DB_UTF8MB3_LEN and MAX_TABLE_UTF8MB3_LEN bytes.
1258@param[in] db_and_table database and table names,
1259 e.g. "@code d@i1b/a@q1b@1Kc @endcode"
1260@param[out] db_utf8mb3 database name, e.g. dцb
1261@param[in] db_utf8mb3_size db_utf8mb3 size
1262@param[out] table_utf8mb3 table name, e.g. aюbØc
1263@param[in] table_utf8mb3_size table_utf8mb3 size */
1264void dict_fs2utf8(const char *db_and_table, char *db_utf8mb3,
1265 size_t db_utf8mb3_size, char *table_utf8mb3,
1266 size_t table_utf8mb3_size);
1267
1268/** Resize the hash tables based on the current buffer pool size. */
1269void dict_resize();
1270
1271/** Wrapper for the mysql.innodb_dynamic_metadata used to buffer the persistent
1272dynamic metadata.
1273This should be a table with only clustered index, no delete-marked records,
1274no locking, no undo logging, no purge, no adaptive hash index.
1275We should always use low level btr functions to access and modify the table.
1276Accessing this table should be protected by dict_sys->mutex */
1278 public:
1279 /** Default constructor */
1280 DDTableBuffer();
1281
1282 /** Destructor */
1284
1285 /** Replace the dynamic metadata for a specific table
1286 @param[in] id table id
1287 @param[in] version table dynamic metadata version
1288 @param[in] metadata the metadata we want to replace
1289 @param[in] len the metadata length
1290 @return DB_SUCCESS or error code */
1291 dberr_t replace(table_id_t id, uint64_t version, const byte *metadata,
1292 size_t len);
1293
1294 /** Remove the whole row for a specific table
1295 @param[in] id table id
1296 @return DB_SUCCESS or error code */
1298
1299 /** Truncate the table. We can call it after all the dynamic
1300 metadata has been written back to DD table */
1301 void truncate();
1302
1303 /** Get the buffered metadata for a specific table, the caller
1304 has to delete the returned std::string object by ut::delete_
1305 @param[in] id table id
1306 @param[out] version table dynamic metadata version
1307 @return the metadata saved in a vector object, if nothing, the
1308 vector would be empty */
1309 std::vector<byte> get(table_id_t id, uint64_t *version);
1310
1311 private:
1312 /** Initialize m_index, the in-memory clustered index of the table
1313 and two tuples used in this class */
1314 void init();
1315
1316 /** Open the mysql.innodb_dynamic_metadata when DD is not fully up */
1317 void open();
1318
1319 /** Create the search and replace tuples */
1320 void create_tuples();
1321
1322 /** Initialize the id field of tuple
1323 @param[out] tuple the tuple to be initialized
1324 @param[in] id table id */
1325 void init_tuple_with_id(dtuple_t *tuple, table_id_t id);
1326
1327 /** Free the things initialized in init() */
1328 void close();
1329
1330 /** Prepare for a update on METADATA field
1331 @param[in] entry clustered index entry to replace rec
1332 @param[in] rec clustered index record
1333 @return update vector of differing fields without system columns,
1334 or NULL if there isn't any different field */
1335 upd_t *update_set_metadata(const dtuple_t *entry, const rec_t *rec);
1336
1337 private:
1338 /** The clustered index of this system table */
1340
1341 /** The heap used for dynamic allocations, which should always
1342 be freed before return */
1344
1345 /** The heap used during replace() operation, which should always
1346 be freed before return */
1348
1349 /** The heap used to create the search tuple and replace tuple */
1351
1352 /** The tuple used to search for specified table, it's protected
1353 by dict_persist->mutex */
1355
1356 /** The tuple used to replace for specified table, it's protected
1357 by dict_persist->mutex */
1359
1360 private:
1361 /** Column number of mysql.innodb_dynamic_metadata.table_id */
1362 static constexpr unsigned TABLE_ID_COL_NO = 0;
1363
1364 /** Column number of mysql.innodb_dynamic_metadata.version */
1365 static constexpr unsigned VERSION_COL_NO = 1;
1366
1367 /** Column number of mysql.innodb_dynamic_metadata.metadata */
1368 static constexpr unsigned METADATA_COL_NO = 2;
1369
1370 /** Number of user columns */
1371 static constexpr unsigned N_USER_COLS = METADATA_COL_NO + 1;
1372
1373 /** Number of columns */
1374 static constexpr unsigned N_COLS = N_USER_COLS + DATA_N_SYS_COLS;
1375
1376 /** Clustered index field number of
1377 mysql.innodb_dynamic_metadata.table_id */
1378 static constexpr unsigned TABLE_ID_FIELD_NO = TABLE_ID_COL_NO;
1379
1380 /** Clustered index field number of
1381 mysql.innodb_dynamic_metadata.version */
1382 static constexpr unsigned VERSION_FIELD_NO = VERSION_COL_NO + 2;
1383
1384 /** Clustered index field number of
1385 mysql.innodb_dynamic_metadata.metadata
1386 Plusing 2 here skips the DATA_TRX_ID and DATA_ROLL_PTR fields */
1387 static constexpr unsigned METADATA_FIELD_NO = METADATA_COL_NO + 2;
1388
1389 /** Number of fields in the clustered index */
1390 static constexpr unsigned N_FIELDS = METADATA_FIELD_NO + 1;
1391};
1392
1393/** Mark the dirty_status of a table as METADATA_DIRTY, and add it to the
1394dirty_dict_tables list if necessary.
1395@param[in,out] table table */
1397#endif /* !UNIV_HOTBACKUP */
1398
1399/** Flags an index corrupted in the data dictionary cache only. This
1400is used to mark a corrupted index when index's own dictionary
1401is corrupted, and we would force to load such index for repair purpose.
1402Besides, we have to write a redo log.
1403We don't want to hold dict_sys->mutex here, so that we can set index as
1404corrupted in some low-level functions. We would only set the flags from
1405not corrupted to corrupted when server is running, so it should be safe
1406to set it directly.
1407@param[in,out] index index, must not be NULL */
1409
1410#ifndef UNIV_HOTBACKUP
1411
1412/** Check if there is any latest persistent dynamic metadata recorded
1413in DDTableBuffer table of the specific table. If so, read the metadata and
1414update the table object accordingly. It's used when loading table.
1415@param[in] table table object */
1417
1418/** Check if any table has any dirty persistent data, if so
1419write dirty persistent data of table to mysql.innodb_dynamic_metadata
1420accordingly. */
1422
1423#ifdef UNIV_DEBUG
1424/** Sets merge_threshold for all indexes in dictionary cache for debug.
1425@param[in] merge_threshold_all value to set for all indexes */
1426void dict_set_merge_threshold_all_debug(uint merge_threshold_all);
1427#endif /* UNIV_DEBUG */
1428
1429/** Validate the table flags.
1430@param[in] flags Table flags
1431@return true if valid. */
1432static inline bool dict_tf_is_valid(uint32_t flags);
1433
1434/** Validate both table flags and table flags2 and make sure they
1435are compatible.
1436@param[in] flags Table flags
1437@param[in] flags2 Table flags2
1438@return true if valid. */
1439static inline bool dict_tf2_is_valid(uint32_t flags, uint32_t flags2);
1440
1441/** Check if the tablespace for the table has been discarded.
1442 @return true if the tablespace has been discarded. */
1443[[nodiscard]] static inline bool dict_table_is_discarded(
1444 const dict_table_t *table); /*!< in: table to check */
1445
1446/** Check whether the table is DDTableBuffer. See class DDTableBuffer
1447@param[in] table table to check
1448@return true if this is a DDTableBuffer table. */
1450
1451/** Check if the table is in a shared tablespace (System or General).
1452@param[in] table table to check
1453@return true if table is a shared tablespace, false if not. */
1454[[nodiscard]] static inline bool dict_table_in_shared_tablespace(
1455 const dict_table_t *table);
1456
1457/** Check whether locking is disabled for this table.
1458Currently this is done for intrinsic table as their visibility is limited
1459to the connection and the DDTableBuffer as it's protected by
1460dict_persist->mutex.
1461
1462@param[in] table table to check
1463@return true if locking is disabled. */
1464[[nodiscard]] static inline bool dict_table_is_locking_disabled(
1465 const dict_table_t *table);
1466
1467/** Turn-off redo-logging if temporary table.
1468@param[in] table Table to check
1469@param[out] mtr Mini-transaction */
1471 mtr_t *mtr);
1472
1473/** Get table session row-id and increment the row-id counter for next use.
1474@param[in,out] table table handler
1475@return next table local row-id. */
1478
1479/** Get table session trx-id and increment the trx-id counter for next use.
1480@param[in,out] table table handler
1481@return next table local trx-id. */
1484
1485/** Get current session trx-id.
1486@param[in] table table handler
1487@return table local trx-id. */
1489 const dict_table_t *table);
1490
1491/** This function should be called whenever a page is successfully
1492 compressed. Updates the compression padding information. */
1494 dict_index_t *index); /*!< in/out: index to be updated. */
1495/** This function should be called whenever a page compression attempt
1496 fails. Updates the compression padding information. */
1498 dict_index_t *index); /*!< in/out: index to be updated. */
1499/** Return the optimal page size, for which page will likely compress.
1500 @return page size beyond which page may not compress*/
1502 dict_index_t *index); /*!< in: index for which page size
1503 is requested */
1504/** Convert table flag to row format string.
1505 @return row format name */
1507 uint32_t table_flag); /*!< in: row format setting */
1508/** Return maximum size of the node pointer record.
1509 @return maximum size of the record in bytes */
1511 const dict_index_t *index); /*!< in: index */
1512
1513/** Get index by first field of the index.
1514@param[in] table table
1515@param[in] col_index position of column in table
1516@return index which is having first field matches with the field present in
1517field_index position of table */
1519 dict_table_t *table, ulint col_index);
1520#endif /* !UNIV_HOTBACKUP */
1521
1522/** encode number of columns and number of virtual columns in one
15234 bytes value. We could do this because the number of columns in
1524InnoDB is limited to 1017
1525@param[in] n_col number of non-virtual column
1526@param[in] n_v_col number of virtual column
1527@return encoded value */
1528static inline ulint dict_table_encode_n_col(ulint n_col, ulint n_v_col);
1529
1530/** Decode number of virtual and non-virtual columns in one 4 bytes value.
1531@param[in] encoded encoded value
1532@param[in,out] n_col number of non-virtual column
1533@param[in,out] n_v_col number of virtual column */
1534static inline void dict_table_decode_n_col(uint32_t encoded, uint32_t *n_col,
1535 uint32_t *n_v_col);
1536
1537/** Free the virtual column template
1538@param[in,out] vc_templ virtual column template */
1539static inline void dict_free_vc_templ(dict_vcol_templ_t *vc_templ);
1540
1541/** Returns a virtual column's name according to its original
1542MySQL table position.
1543@param[in] table target table
1544@param[in] col_nr column number (nth column in the table)
1545@return column name. */
1547 ulint col_nr);
1548
1549/** Check whether the table have virtual index.
1550@param[in] table InnoDB table
1551@return true if the table have virtual index, false otherwise. */
1553
1554/** Retrieve in-memory index for SDI table.
1555@param[in] tablespace_id innodb tablespace ID
1556@return dict_index_t structure or NULL*/
1558
1559/** Retrieve in-memory table object for SDI table.
1560@param[in] tablespace_id innodb tablespace ID
1561@param[in] dict_locked true if dict_sys mutex is acquired
1562@param[in] is_create true when creating SDI Index
1563@return dict_table_t structure */
1564dict_table_t *dict_sdi_get_table(space_id_t tablespace_id, bool dict_locked,
1565 bool is_create);
1566
1567/** Remove the SDI table from table cache.
1568@param[in] space_id InnoDB tablespace ID
1569@param[in] sdi_table SDI table
1570@param[in] dict_locked true if dict_sys mutex acquired */
1571void dict_sdi_remove_from_cache(space_id_t space_id, dict_table_t *sdi_table,
1572 bool dict_locked);
1573
1574/** Check if the index is SDI index
1575@param[in] index in-memory index structure
1576@return true if index is SDI index else false */
1577static inline bool dict_index_is_sdi(const dict_index_t *index);
1578
1579/** Check if an table id belongs SDI table
1580@param[in] table_id dict_table_t id
1581@return true if table_id is SDI table_id else false */
1582static inline bool dict_table_is_sdi(uint64_t table_id);
1583
1584/** Close SDI table.
1585@param[in] table the in-memory SDI table object */
1587
1588/** Acquire exclusive MDL on SDI tables. This is acquired to
1589prevent concurrent DROP table/tablespace when there is purge
1590happening on SDI table records. Purge will acquire shared
1591MDL on SDI table.
1592
1593Exclusive MDL is transactional(released on trx commit). So
1594for successful acquisition, there should be a valid thd associated
1595with a trx.
1596
1597Acquisition order of SDI MDL and SDI table has to be in the same
1598order:
1599
16001. dd_sdi_acquire_exclusive_mdl
16012. row_drop_table_from_cache()/innodb_drop_tablespace()
1602 ->dict_sdi_remove_from_cache()->dd_table_open_on_id()
1603
1604In purge:
1605
16061. dd_sdi_acquire_shared_mdl
16072. dd_table_open_on_id()
1608
1609@param[in] thd server thread instance
1610@param[in] space_id InnoDB tablespace id
1611@param[in,out] sdi_mdl MDL ticket on SDI table
1612@retval DB_SUCESS on success
1613@retval DB_LOCK_WAIT_TIMEOUT on error */
1615 MDL_ticket **sdi_mdl);
1616
1617/** Acquire shared MDL on SDI tables. This is acquired by purge to
1618prevent concurrent DROP table/tablespace.
1619DROP table/tablespace will acquire exclusive MDL on SDI table
1620
1621Acquisition order of SDI MDL and SDI table has to be in same
1622order:
1623
16241. dd_sdi_acquire_exclusive_mdl
16252. row_drop_table_from_cache()/innodb_drop_tablespace()
1626 ->dict_sdi_remove_from_cache()->dd_table_open_on_id()
1627
1628In purge:
1629
16301. dd_sdi_acquire_shared_mdl
16312. dd_table_open_on_id()
1632
1633MDL should be released by caller
1634@param[in] thd server thread instance
1635@param[in] space_id InnoDB tablespace id
1636@param[in,out] sdi_mdl MDL ticket on SDI table
1637@retval DB_SUCESS on success
1638@retval DB_LOCK_WAIT_TIMEOUT on error */
1640 MDL_ticket **sdi_mdl);
1641
1642/** Check whether the dict_table_t is a partition.
1643A partitioned table on the SQL level is composed of InnoDB tables,
1644where each InnoDB table is a [sub]partition including its secondary indexes
1645which belongs to the partition.
1646@param[in] table Table to check.
1647@return true if the dict_table_t is a partition else false. */
1648static inline bool dict_table_is_partition(const dict_table_t *table);
1649
1650/** Allocate memory for intrinsic cache elements in the index
1651@param[in] index index object */
1653
1654/** Get the tablespace data directory if set, otherwise empty string.
1655@return the data directory */
1656[[nodiscard]] std::string dict_table_get_datadir(const dict_table_t *table);
1657
1658/** Set the compression type for the tablespace of a table
1659@param[in] table The table that should be compressed
1660@param[in] algorithm Text representation of the algorithm
1661@param[in] is_import_op True if it's being set during import operation
1662@return DB_SUCCESS or error code */
1664 const char *algorithm,
1665 bool is_import_op);
1666
1667/** @return true if all base column of virtual column is foreign key column
1668@param[in] vcol in-memory virtual column
1669@param[in] foreign in-memory Foreign key constraint */
1671 dict_foreign_t *foreign);
1672
1673/** Get maximum possible size needed for a field.
1674@param[in] table innodb table definition cache
1675@param[in] index index
1676@param[in] field field
1677@param[out] rec_max_size max record size needed */
1679 const dict_field_t *field, size_t &rec_max_size);
1680
1681/** Get the maximum size of a record permissible on an index page.
1682@param[in] table innodb table definition cache
1683@param[in] index index
1684@param[out] page_rec_max maximum size of record on a leaf page
1685@param[out] page_ptr_max maximum size of record on non-leaf page */
1687 const dict_index_t *index, size_t &page_rec_max,
1688 size_t &page_ptr_max);
1689
1690/** validate that maximum possible size of a row is within permissible limit.
1691@param[in] table innodb table definition cache
1692@param[in] index index
1693@param[in] page_rec_max maximum size of possible record on leaf page
1694@param[in] page_ptr_max maximum size of possible record on non-leaf page
1695@param[out] rec_max_size maximum size of record on page
1696@return true if max record size is within limit, false otherwise. */
1698 const dict_index_t *index,
1699 const size_t page_rec_max,
1700 const size_t page_ptr_max,
1701 size_t &rec_max_size);
1702
1703#ifndef UNIV_HOTBACKUP
1704/** Ensure that new row id generated by dict_sys is at least the specified one
1705@param[in] next_id Minimum row id to use from now on to avoid conflict */
1707#endif /* !UNIV_HOTBACKUP */
1708
1709#include "dict0dict.ic"
1710
1711#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:1277
~DDTableBuffer()
Destructor.
Definition: dict0dict.cc:5067
static constexpr unsigned N_USER_COLS
Number of user columns.
Definition: dict0dict.h:1371
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:5420
void init_tuple_with_id(dtuple_t *tuple, table_id_t id)
Initialize the id field of tuple.
Definition: dict0dict.cc:5222
static constexpr unsigned TABLE_ID_COL_NO
Column number of mysql.innodb_dynamic_metadata.table_id.
Definition: dict0dict.h:1362
mem_heap_t * m_replace_heap
The heap used during replace() operation, which should always be freed before return.
Definition: dict0dict.h:1347
void create_tuples()
Create the search and replace tuples.
Definition: dict0dict.cc:5070
dict_index_t * m_index
The clustered index of this system table.
Definition: dict0dict.h:1339
void init()
Initialize m_index, the in-memory clustered index of the table and two tuples used in this class.
Definition: dict0dict.cc:5113
static constexpr unsigned METADATA_COL_NO
Column number of mysql.innodb_dynamic_metadata.metadata.
Definition: dict0dict.h:1368
static constexpr unsigned VERSION_FIELD_NO
Clustered index field number of mysql.innodb_dynamic_metadata.version.
Definition: dict0dict.h:1382
DDTableBuffer()
Default constructor.
Definition: dict0dict.cc:5059
dtuple_t * m_replace_tuple
The tuple used to replace for specified table, it's protected by dict_persist->mutex.
Definition: dict0dict.h:1358
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:1387
void close()
Free the things initialized in init()
Definition: dict0dict.cc:5231
upd_t * update_set_metadata(const dtuple_t *entry, const rec_t *rec)
Prepare for a update on METADATA field.
Definition: dict0dict.cc:5245
void open()
Open the mysql.innodb_dynamic_metadata when DD is not fully up.
Definition: dict0dict.cc:5139
static constexpr unsigned TABLE_ID_FIELD_NO
Clustered index field number of mysql.innodb_dynamic_metadata.table_id.
Definition: dict0dict.h:1378
static constexpr unsigned N_COLS
Number of columns.
Definition: dict0dict.h:1374
static constexpr unsigned N_FIELDS
Number of fields in the clustered index.
Definition: dict0dict.h:1390
dtuple_t * m_search_tuple
The tuple used to search for specified table, it's protected by dict_persist->mutex.
Definition: dict0dict.h:1354
void truncate()
Truncate the table.
Definition: dict0dict.cc:5408
dberr_t remove(table_id_t id)
Remove the whole row for a specific table.
Definition: dict0dict.cc:5376
mem_heap_t * m_dynamic_heap
The heap used for dynamic allocations, which should always be freed before return.
Definition: dict0dict.h:1343
mem_heap_t * m_heap
The heap used to create the search tuple and replace tuple.
Definition: dict0dict.h:1350
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:5294
static constexpr unsigned VERSION_COL_NO
Column number of mysql.innodb_dynamic_metadata.version.
Definition: dict0dict.h:1365
A granted metadata lock.
Definition: mdl.h:988
Persistent dynamic metadata for a table.
Definition: dict0mem.h:2791
Container of persisters used in the system.
Definition: dict0mem.h:2991
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:1187
~Enable_immediate()
Destructor to switch back to default mode.
Definition: dict0dict.cc:5953
Enable_immediate(dict_persist_t *persister)
Constructor to immediate persisting mode.
Definition: dict0dict.cc:5943
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:1204
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:226
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:5017
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:1825
bool dict_table_autoinc_log(dict_table_t *table, uint64_t value, mtr_t *mtr)
Write redo logs for autoinc counter that is to be inserted, or to update some existing smaller one to...
Definition: dict0dict.cc:816
constexpr uint32_t BIG_ROW_SIZE
Definition: dict0dict.h:645
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:705
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:5844
ulint dict_get_db_name_len(const char *name)
Get the database name length in a table name.
Definition: dict0dict.cc:290
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:3800
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:3567
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:1009
static void dict_table_next_uncorrupted_index(dict_index_t *&index)
Definition: dict0dict.h:419
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:1962
const char * dict_remove_db_name(const char *name)
Return the end of table name where we have removed dbname and '/'.
Definition: dict0dict.cc:278
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:4755
void dict_close()
Closes the data dictionary module.
Definition: dict0dict.cc:4628
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:1443
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:379
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:4972
void dict_mutex_exit_for_mysql()
Releases the dictionary system mutex for MySQL.
Definition: dict0dict.cc:306
void dict_table_stats_compute_unlock(dict_table_t *table)
Unlock the lock locked by dict_table_stats_compute_lock().
Definition: dict0dict.cc:490
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:262
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:3697
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:4110
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:2420
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:407
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:683
constexpr uint32_t MAX_NUM_FK_COLUMNS
Maximum number of columns in a foreign key constraint.
Definition: dict0dict.h:995
void dict_table_wait_for_bg_threads_to_exit(dict_table_t *table, std::chrono::microseconds delay)
Definition: dict0dict.cc:2928
rw_lock_t * dict_operation_lock
the data dictionary rw-latch protecting dict_sys
Definition: dict0dict.cc:175
void dict_ind_init()
Inits dict_ind_redundant.
Definition: dict0dict.cc:4363
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:1374
void dict_validate_no_purge_rollback_threads()
Validate no active background threads to cause purge or rollback operations.
Definition: dict0dict.cc:5978
void dict_table_stats_latch_destroy(dict_table_t *table)
Destroy a dict_table_t's stats latch.
Definition: dict0dict.cc:396
void dict_mutex_enter_for_mysql()
Reserves the dictionary system mutex for MySQL.
Definition: dict0dict.cc:303
void dict_foreign_free(dict_foreign_t *foreign)
Frees a foreign key struct.
Definition: dict0mem.h:1794
dict_persist_t * dict_persist
the dictionary persisting structure
Definition: dict0dict.cc:165
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:790
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:258
void dict_persist_init()
Inits the structure for persisting dynamic metadata.
Definition: dict0dict.cc:3891
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:1175
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:1356
void dict_index_remove_from_cache(dict_table_t *table, dict_index_t *index)
Removes an index from the dictionary cache.
Definition: dict0dict.cc:2695
dict_index_t * dict_sdi_get_index(space_id_t tablespace_id)
Retrieve in-memory index for SDI table.
Definition: dict0dict.cc:5776
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:553
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:629
const dict_index_t * dict_index_find(const index_id_t &id)
Look up an index among already opened tables.
Definition: dict0dict.cc:1406
void dict_move_to_mru(dict_table_t *table)
Move to the most recently used segment of the LRU list.
Definition: dict0dict.cc:1096
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:2031
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:909
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:871
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:2312
void dict_resize()
Resize the hash tables based on the current buffer pool size.
Definition: dict0dict.cc:4582
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:361
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:4350
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:256
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:2236
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:412
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:3635
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:4215
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:953
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:5816
void dict_table_read_dynamic_metadata(const byte *buffer, ulint size, PersistentTableMetadata *metadata)
Read persistent dynamic metadata stored in a buffer.
Definition: dict0dict.cc:4032
uint32_t dict_vcol_base_is_foreign_key(dict_v_col_t *vcol, dict_foreign_t *foreign)
Definition: dict0dict.cc:5958
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.
const char * dict_tf_to_row_format_string(uint32_t table_flag)
Convert table flag to row format string.
Definition: dict0dict.cc:4996
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:4395
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:655
void dict_set_corrupted(dict_index_t *index) UNIV_COLD
Flags an index corrupted in the data dictionary cache only.
Definition: dict0dict.cc:4148
void dict_sdi_close_table(dict_table_t *table)
Close SDI table.
Definition: dict0dict.cc:5768
void dict_table_stats_compute_lock(dict_table_t *table)
Acquire table's statistics compute lock.
Definition: dict0dict.cc:473
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:448
dict_index_t * dict_ind_redundant
dummy index for ROW_FORMAT=REDUNDANT supremum and infimum records
Definition: dict0dict.cc:71
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:2001
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:417
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:2857
void dict_persist_close()
Clear the structure.
Definition: dict0dict.cc:3916
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:768
@ CHECK_ABORTED_OK
Allow aborted online index creation.
Definition: dict0dict.h:772
@ CHECK_ALL_COMPLETE
Require all indexes to be complete.
Definition: dict0dict.h:770
@ CHECK_PARTIAL_OK
Allow partial indexes to exist.
Definition: dict0dict.h:774
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:3289
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:3423
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:5919
void dict_index_zip_failure(dict_index_t *index)
This function should be called whenever a page compression attempt fails.
Definition: dict0dict.cc:4911
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:2894
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:1296
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:2912
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:2009
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:3296
static uint64_t dict_table_get_n_rows(const dict_table_t *table)
Gets the approximately estimated number of rows in the table.
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:4416
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:889
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:4534
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:3618
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:2303
std::string dict_table_get_datadir(const dict_table_t *table)
Get the tablespace data directory if set, otherwise empty string.
Definition: dict0dict.cc:5909
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:900
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:4930
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:3344
void dict_index_zip_success(dict_index_t *index)
This function should be called whenever a page is successfully compressed.
Definition: dict0dict.cc:4892
void dict_table_add_system_columns(dict_table_t *table, mem_heap_t *heap)
Adds system columns to a table object.
Definition: dict0dict.cc:1115
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:2107
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:6032
void dict_table_set_big_rows(dict_table_t *table)
Mark if table has big rows.
Definition: dict0dict.cc:1156
void dict_init()
Inits the data dictionary module.
Definition: dict0dict.cc:1067
void dict_table_autoinc_initialize(dict_table_t *table, uint64_t value)
Unconditionally set the autoinc counter.
Definition: dict0dict.cc:810
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:998
std::vector< table_id_t > dict_get_all_table_ids()
Gathers ids of all tables in cache at the moment.
Definition: dict0dict.cc:2701
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:4480
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:5792
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:1036
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:3751
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:4065
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:752
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:914
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:1954
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:737
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:2141
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:3728
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:5882
dict_sys_t * dict_sys
the dictionary system
Definition: dict0dict.cc:135
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:4235
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:1645
Data dictionary global types.
ib_id_t space_index_t
Index identifier (unique within a tablespace).
Definition: dict0types.h:223
ib_mutex_t DictSysMutex
Definition: dict0types.h:307
dict_err_ignore_t
Error to ignore when we load table dictionary into memory.
Definition: dict0types.h:283
ib_id_t table_id_t
Table or partition identifier (unique within an InnoDB instance).
Definition: dict0types.h:221
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:408
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:1673
Data structure for an index.
Definition: dict0mem.h:1067
Structure for persisting dynamic metadata of data dictionary.
Definition: dict0dict.h:1180
Persisters * persisters
Collection of instances to persist dynamic metadata.
Definition: dict0dict.h:1244
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:1227
std::atomic< uint32_t > num_dirty_tables
Number of the tables which are of status METADATA_DIRTY.
Definition: dict0dict.h:1231
std::atomic< bool > m_persist_immediately
If set, dynamic metadata is saved to DD buffer table immediately.
Definition: dict0dict.h:1236
DDTableBuffer * table_buffer
DDTableBuffer table for persistent dynamic metadata.
Definition: dict0dict.h:1240
bool check_persist_immediately() const
Definition: dict0dict.h:1209
dirty_dict_tables
List of tables whose dirty_status are marked as METADATA_DIRTY, or METADATA_BUFFERED.
Definition: dict0dict.h:1216
Definition: dict0dict.h:1019
void for_each_table(Functor &functor)
Iterate each table.
Definition: dict0dict.h:1069
static constexpr space_id_t s_undo_space_id_range
The number of space IDs dedicated to each undo tablespace.
Definition: dict0dict.h:1119
static constexpr space_id_t s_max_undo_space_id
The highest undo tablespace ID.
Definition: dict0dict.h:1126
dict_table_t * ddl_log
Permanent handle to mysql.innodb_ddl_log.
Definition: dict0dict.h:1055
static bool is_reserved(space_id_t space)
Check if a tablespace id is a reserved tablespace ID.
Definition: dict0dict.h:1089
static constexpr space_id_t s_reserved_space_id
The first reserved tablespace ID.
Definition: dict0dict.h:1139
static std::set< dd::Object_id > s_dd_table_ids
Set of ids of DD tables.
Definition: dict0dict.h:1094
static constexpr table_id_t s_dynamic_meta_table_id
The table ID of mysql.innodb_dynamic_metadata.
Definition: dict0dict.h:1173
static constexpr space_id_t s_min_temp_space_id
Lowest temporary general space id.
Definition: dict0dict.h:1135
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:1145
static const char * s_default_undo_space_name_2
Definition: dict0dict.h:1170
UT_LIST_BASE_NODE_T(dict_table_t, table_LRU) Table_LRU_list_base
Definition: dict0dict.h:1058
static const char * s_file_per_table_name
The hard-coded tablespace name innodb_file_per_table.
Definition: dict0dict.h:1166
static constexpr space_id_t s_log_space_id
The first ID of the redo log pseudo-tablespace.
Definition: dict0dict.h:1107
Table_LRU_list_base table_LRU
List of tables that can be evicted from the cache.
Definition: dict0dict.h:1061
static const char * s_dd_space_name
The name of the data dictionary tablespace.
Definition: dict0dict.h:1151
DictSysMutex mutex
mutex protecting the data dictionary; protects also the disk-based dictionary system tables; this mut...
Definition: dict0dict.h:1024
static constexpr space_id_t s_min_undo_space_id
The lowest undo tablespace ID.
Definition: dict0dict.h:1122
static const char * s_temp_space_file_name
The file name of the predefined temporary tablespace.
Definition: dict0dict.h:1163
static bool is_dd_table_id(table_id_t id)
Check if a table is hardcoded.
Definition: dict0dict.h:1102
static const char * s_default_undo_space_name_1
These two undo tablespaces cannot be dropped.
Definition: dict0dict.h:1169
size_t size
varying space in bytes occupied by the data dictionary table and index objects
Definition: dict0dict.h:1048
static const char * s_dd_space_file_name
The file name of the data dictionary tablespace.
Definition: dict0dict.h:1154
Table_LRU_list_base table_non_LRU
List of tables that can't be evicted from the cache.
Definition: dict0dict.h:1063
static constexpr dd::Object_id s_dd_dict_space_id
The dd::Tablespace::id of the dictionary tablespace.
Definition: dict0dict.h:1142
static const char * s_sys_space_name
The name of the hard-coded system tablespace.
Definition: dict0dict.h:1157
static constexpr space_id_t s_temp_space_id
The innodb_temporary tablespace ID.
Definition: dict0dict.h:1116
dict_table_t * index_stats
Permanent handle to mysql.innodb_index_stats.
Definition: dict0dict.h:1053
static constexpr space_id_t s_dict_space_id
The data dictionary tablespace ID.
Definition: dict0dict.h:1113
dict_table_t * table_stats
Permanent handle to mysql.innodb_table_stats.
Definition: dict0dict.h:1051
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:1176
static constexpr space_id_t s_max_temp_space_id
Start space_ids for temporary tablespaces.
Definition: dict0dict.h:1129
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:1038
static constexpr dd::Object_id s_dd_temp_space_id
The dd::Tablespace::id of innodb_temporary.
Definition: dict0dict.h:1148
static const char * s_temp_space_name
The name of the predefined temporary tablespace.
Definition: dict0dict.h:1160
static constexpr space_id_t s_invalid_space_id
Use maximum UINT value to indicate invalid space ID.
Definition: dict0dict.h:1110
dict_table_t * dynamic_metadata
Permanent handle to mysql.innodb_dynamic_metadata.
Definition: dict0dict.h:1057
static constexpr space_id_t s_temp_space_id_range
The number of space IDs dedicated to temporary tablespaces.
Definition: dict0dict.h:1132
hash_table_t * table_id_hash
hash table of the tables, based on id
Definition: dict0dict.h:1044
hash_table_t * table_hash
hash table of the tables, based on name
Definition: dict0dict.h:1041
Data structure for a database table.
Definition: dict0mem.h:1925
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:1862
Structure for an SQL data tuple of fields (logical record)
Definition: data0data.h:696
Definition: ut0vec.h:213
The info structure stored at the beginning of a heap block.
Definition: mem0mem.h:302
Mini-transaction handle and buffer.
Definition: mtr0mtr.h:177
The structure used in the spin lock implementation of a read-write lock.
Definition: sync0rw.h:362
Definition: trx0trx.h:675
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:267
unsigned long int ulint
Definition: univ.i:406
Utilities for byte operations.
Memory primitives.
#define mutex_exit(M)
Definition: ut0mutex.h:123
#define mutex_enter(M)
Definition: ut0mutex.h:117
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