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