MySQL 26.7.0
Source Code Documentation
ha_innodb.h
Go to the documentation of this file.
1/*****************************************************************************
2
3Copyright (c) 2000, 2026, Oracle and/or its affiliates.
4
5This program is free software; you can redistribute it and/or modify it under
6the terms of the GNU General Public License, version 2.0, as published by the
7Free Software Foundation.
8
9This program is designed to work with certain software (including
10but not limited to OpenSSL) that is licensed under separate terms,
11as designated in a particular file or component or in included license
12documentation. The authors of MySQL hereby grant you an additional
13permission to link the program and your derivative works with the
14separately licensed software that they have either included with
15the program or referenced in the documentation.
16
17This program is distributed in the hope that it will be useful, but WITHOUT
18ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
20for more details.
21
22You should have received a copy of the GNU General Public License along with
23this program; if not, write to the Free Software Foundation, Inc.,
2451 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
26*****************************************************************************/
27
28#ifndef ha_innodb_h
29#define ha_innodb_h
30
31/* The InnoDB handler: the interface between MySQL and InnoDB. */
32
33#include <assert.h>
34#include <sys/types.h>
35#include "create_field.h"
36#include "field.h"
37#include "handler.h"
40
41#include "row0pread-adapter.h"
42#include "row0pread-histogram.h"
43#include "trx0trx.h"
44#include "ut0atomic_sysvar.h"
45
46/** A sysvar which controls how much can we round up the autoinc value when
47persisting it to DDTableBuffer. The larger the value, the less often we have to
48perform this costly write, but the larger the gap in numbers in case we crash.*/
50
51/** "GEN_CLUST_INDEX" is the name reserved for InnoDB default
52system clustered index when there is no primary key. */
53extern const char innobase_index_reserve_name[];
54
55/** Clone protocol service. */
56extern SERVICE_TYPE(clone_protocol) * clone_protocol_svc;
57
58/* Structure defines translation table between mysql index and InnoDB
59index structures */
61 ulint index_count; /*!< number of valid index entries
62 in the index_mapping array */
63
64 ulint array_size; /*!< array size of index_mapping */
65
66 dict_index_t **index_mapping; /*!< index pointer array directly
67 maps to index in InnoDB from MySQL
68 array index */
69};
70
71/** InnoDB table share */
73 const char *table_name; /*!< InnoDB table name */
74 uint use_count; /*!< reference count,
75 incremented in get_share()
76 and decremented in
77 free_share() */
79 /*!< hash table chain node */
80 innodb_idx_translate_t idx_trans_tbl; /*!< index translation table between
81 MySQL and InnoDB */
82};
83
84/** Prebuilt structures in an InnoDB table handle used within MySQL */
85struct row_prebuilt_t;
86
87namespace dd {
88namespace cache {
89class Dictionary_client;
90}
91} // namespace dd
92
93/** The class defining a handle to an InnoDB table */
94class ha_innobase : public handler {
95 public:
96 ha_innobase(handlerton *hton, TABLE_SHARE *table_arg);
97 ~ha_innobase() override = default;
98
99 row_type get_real_row_type(const HA_CREATE_INFO *create_info) const override;
100
101 const char *table_type() const override;
102
104 return HA_KEY_ALG_BTREE;
105 }
106
107 /** Check if SE supports specific key algorithm. */
108 bool is_index_algorithm_supported(enum ha_key_alg key_alg) const override {
109 /* This method is never used for FULLTEXT or SPATIAL keys.
110 We rely on handler::ha_table_flags() to check if such keys
111 are supported. */
112 assert(key_alg != HA_KEY_ALG_FULLTEXT && key_alg != HA_KEY_ALG_RTREE);
113 return key_alg == HA_KEY_ALG_BTREE;
114 }
115
116 Table_flags table_flags() const override;
117
118 ulong index_flags(uint idx, uint part, bool all_parts) const override;
119
120 uint max_supported_keys() const override;
121
122 uint max_supported_key_length() const override;
123
125 HA_CREATE_INFO *create_info) const override;
126
127 int open(const char *name, int, uint open_flags,
128 const dd::Table *table_def) override;
129
130 handler *clone(const char *name, MEM_ROOT *mem_root) override;
131
132 int close(void) override;
133
134 double scan_time() override;
135
136 double read_time(uint index, uint ranges, ha_rows rows) override;
137
138 longlong get_memory_buffer_size() const override;
139
140 int write_row(uchar *buf) override;
141
142 int update_row(const uchar *old_data, uchar *new_data) override;
143
144 int delete_row(const uchar *buf) override;
145
146 /** Delete all rows from the table.
147 @retval HA_ERR_WRONG_COMMAND if the table is transactional
148 @retval 0 on success */
149 int delete_all_rows() override;
150
151 bool was_semi_consistent_read() override;
152
153 void try_semi_consistent_read(bool yes) override;
154
155 void unlock_row() override;
156
157 int index_init(uint index, bool sorted) override;
158
159 int index_end() override;
160
161 int index_read(uchar *buf, const uchar *key, uint key_len,
162 ha_rkey_function find_flag) override;
163
164 int index_read_last(uchar *buf, const uchar *key, uint key_len) override;
165
166 int index_next(uchar *buf) override;
167
168 int index_next_same(uchar *buf, const uchar *key, uint keylen) override;
169
170 int index_prev(uchar *buf) override;
171
172 int index_first(uchar *buf) override;
173
174 int index_last(uchar *buf) override;
175
176 int read_range_first(const key_range *start_key, const key_range *end_key,
177 bool eq_range_arg, bool sorted) override;
178
179 int read_range_next() override;
180
181 int rnd_init(bool scan) override;
182
183 int rnd_end() override;
184
185 int rnd_next(uchar *buf) override;
186
187 int rnd_pos(uchar *buf, uchar *pos) override;
188
189 int ft_init() override;
190
191 void ft_end();
192
193 FT_INFO *ft_init_ext(uint flags, uint inx, String *key) override;
194
196 Ft_hints *hints) override;
197
198 int ft_read(uchar *buf) override;
199
200 void position(const uchar *record) override;
201
202 int info(uint) override;
203
204 int enable_indexes(uint mode) override;
205
206 int disable_indexes(uint mode) override;
207
208 int analyze(THD *thd, HA_CHECK_OPT *check_opt) override;
209
210 int optimize(THD *thd, HA_CHECK_OPT *check_opt) override;
211
212 int discard_or_import_tablespace(bool discard, dd::Table *table_def) override;
213
214 int extra(ha_extra_function operation) override;
215
216 int reset() override;
217
218 int external_lock(THD *thd, int lock_type) override;
219
220 /** Initialize sampling.
221 @param[out] scan_ctx A scan context created by this method that has to be
222 used in sample_next
223 @param[in] sampling_percentage percentage of records that need to be sampled
224 @param[in] sampling_seed random seed that the random generator will use
225 @param[in] sampling_method sampling method to be used; currently only
226 SYSTEM sampling is supported
227 @param[in] tablesample true if the sampling is for tablesample
228 @return 0 for success, else one of the HA_xxx values in case of error. */
229 int sample_init(void *&scan_ctx, double sampling_percentage,
230 int sampling_seed, enum_sampling_method sampling_method,
231 const bool tablesample) override;
232
233 /** Get the next record for sampling.
234 @param[in] scan_ctx Scan context of the sampling
235 @param[in] buf buffer to place the read record
236 @return 0 for success, else one of the HA_xxx values in case of error. */
237 int sample_next(void *scan_ctx, uchar *buf) override;
238
239 /** End sampling.
240 @param[in] scan_ctx Scan context of the sampling
241 @return 0 for success, else one of the HA_xxx values in case of error. */
242 int sample_end(void *scan_ctx) override;
243
244 /** MySQL calls this function at the start of each SQL statement
245 inside LOCK TABLES. Inside LOCK TABLES the "::external_lock" method
246 does not work to mark SQL statement borders. Note also a special case:
247 if a temporary table is created inside LOCK TABLES, MySQL has not
248 called external_lock() at all on that table.
249 MySQL-5.0 also calls this before each statement in an execution of a
250 stored procedure. To make the execution more deterministic for
251 binlogging, MySQL-5.0 locks all tables involved in a stored procedure
252 with full explicit table locks (thd_in_lock_tables(thd) holds in
253 store_lock()) before executing the procedure.
254 @param[in] thd handle to the user thread
255 @param[in] lock_type lock type
256 @return 0 or error code */
257 int start_stmt(THD *thd, thr_lock_type lock_type) override;
258
260
261 int records(ha_rows *num_rows) override;
262
263 ha_rows records_in_range(uint inx, key_range *min_key,
264 key_range *max_key) override;
265
267
268 void update_create_info(HA_CREATE_INFO *create_info) override;
269
270 /** Get storage-engine private data for a data dictionary table.
271 @param[in,out] dd_table data dictionary table definition
272 @param reset reset counters
273 @retval true an error occurred
274 @retval false success */
275 bool get_se_private_data(dd::Table *dd_table, bool reset) override;
276
277 /** Add hidden columns and indexes to an InnoDB table definition.
278 @param[in,out] dd_table data dictionary cache object
279 @return error number
280 @retval 0 on success */
282 const List<Create_field> *, const KEY *, uint,
283 dd::Table *dd_table) override;
284
285 /** Set Engine specific data to dd::Table object for upgrade.
286 @param[in,out] thd thread handle
287 @param[in] db_name database name
288 @param[in] table_name table name
289 @param[in,out] dd_table data dictionary cache object
290 @return 0 on success, non-zero on failure */
291 bool upgrade_table(THD *thd, const char *db_name, const char *table_name,
292 dd::Table *dd_table) override;
293
294 /** Create an InnoDB table.
295 @param[in] name table name in filename-safe encoding
296 @param[in] form table structure
297 @param[in] create_info more information on the table
298 @param[in,out] table_def dd::Table describing table to be
299 created. Can be adjusted by SE, the changes will be saved into data-dictionary
300 at statement commit time.
301 @return error number
302 @retval 0 on success */
303 int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info,
304 dd::Table *table_def) override;
305
306 /** Drop a table.
307 @param[in] name table name
308 @param[in] table_def dd::Table describing table to
309 be dropped
310 @return error number
311 @retval 0 on success */
312 int delete_table(const char *name, const dd::Table *table_def) override;
313
314 protected:
315 /** Drop a table.
316 @param[in] name table name
317 @param[in] table_def dd::Table describing table to
318 be dropped
319 @param[in] sqlcom type of operation that the DROP is part of
320 @return error number
321 @retval 0 on success */
322 int delete_table(const char *name, const dd::Table *table_def,
323 enum enum_sql_command sqlcom);
324
325 public:
326 int rename_table(const char *from, const char *to,
327 const dd::Table *from_table, dd::Table *to_table) override;
328
329 int check(THD *thd, HA_CHECK_OPT *check_opt) override;
330
331 uint lock_count(void) const override;
332
334 thr_lock_type lock_type) override;
335
336 void init_table_handle_for_HANDLER() override;
337
338 void get_auto_increment(ulonglong offset, ulonglong increment,
339 ulonglong nb_desired_values, ulonglong *first_value,
340 ulonglong *nb_reserved_values) override;
341
342 /** Do cleanup for auto increment calculation. */
343 void release_auto_increment() override;
344
345 bool get_error_message(int error, String *buf) override;
346
347 bool get_foreign_dup_key(char *, uint, char *, uint) override;
348
349 bool primary_key_is_clustered() const override;
350
351 int cmp_ref(const uchar *ref1, const uchar *ref2) const override;
352
353 /** @defgroup ALTER_TABLE_INTERFACE On-line ALTER TABLE interface
354 @see handler0alter.cc
355 @{ */
356
357 /** Check if InnoDB supports a particular alter table in-place
358 @param altered_table TABLE object for new version of table.
359 @param ha_alter_info Structure describing changes to be done
360 by ALTER TABLE and holding data used during in-place alter.
361
362 @retval HA_ALTER_INPLACE_NOT_SUPPORTED Not supported
363 @retval HA_ALTER_INPLACE_NO_LOCK Supported
364 @retval HA_ALTER_INPLACE_SHARED_LOCK_AFTER_PREPARE Supported, but requires
365 lock during main phase and exclusive lock during prepare phase.
366 @retval HA_ALTER_INPLACE_NO_LOCK_AFTER_PREPARE Supported, prepare phase
367 requires exclusive lock (any transactions that have accessed the table
368 must commit or roll back first, and no transactions can access the table
369 while prepare_inplace_alter_table() is executing)
370 */
372 TABLE *altered_table, Alter_inplace_info *ha_alter_info) override;
373
374 /** Allows InnoDB to update internal structures with concurrent
375 writes blocked (provided that check_if_supported_inplace_alter()
376 did not return HA_ALTER_INPLACE_NO_LOCK).
377 This will be invoked before inplace_alter_table().
378 @param[in] altered_table TABLE object for new version of table.
379 @param[in,out] ha_alter_info Structure describing changes to be done
380 by ALTER TABLE and holding data used during in-place alter.
381 @param[in] old_dd_tab dd::Table object describing old version
382 of the table.
383 @param[in,out] new_dd_tab dd::Table object for the new version of
384 the table. Can be adjusted by this call. Changes to the table definition will
385 be persisted in the data-dictionary at statement commit time.
386 @retval true Failure
387 @retval false Success
388 */
389 bool prepare_inplace_alter_table(TABLE *altered_table,
390 Alter_inplace_info *ha_alter_info,
391 const dd::Table *old_dd_tab,
392 dd::Table *new_dd_tab) override;
393
394 /** Alter the table structure in-place with operations
395 specified using HA_ALTER_FLAGS and Alter_inplace_information.
396 The level of concurrency allowed during this operation depends
397 on the return value from check_if_supported_inplace_alter().
398 @param[in] altered_table TABLE object for new version of table.
399 @param[in,out] ha_alter_info Structure describing changes to be done
400 by ALTER TABLE and holding data used during in-place alter.
401 @param[in] old_dd_tab dd::Table object describing old version
402 of the table.
403 @param[in,out] new_dd_tab dd::Table object for the new version of
404 the table. Can be adjusted by this call. Changes to the table definition will
405 be persisted in the data-dictionary at statement commit time.
406 @retval true Failure
407 @retval false Success
408 */
409 bool inplace_alter_table(TABLE *altered_table,
410 Alter_inplace_info *ha_alter_info,
411 const dd::Table *old_dd_tab,
412 dd::Table *new_dd_tab) override;
413
414 /** Commit or rollback the changes made during
415 prepare_inplace_alter_table() and inplace_alter_table() inside
416 the storage engine. Note that the allowed level of concurrency
417 during this operation will be the same as for
418 inplace_alter_table() and thus might be higher than during
419 prepare_inplace_alter_table(). (E.g concurrent writes were
420 blocked during prepare, but might not be during commit).
421 @param[in] altered_table TABLE object for new version of table.
422 @param[in,out] ha_alter_info Structure describing changes to be done
423 by ALTER TABLE and holding data used during in-place alter.
424 @param[in] commit True to commit or false to rollback.
425 @param[in] old_dd_tab dd::Table object representing old
426 version of the table
427 @param[in,out] new_dd_tab dd::Table object representing new
428 version of the table. Can be adjusted by this call. Changes to the table
429 definition will be persisted in the data-dictionary at statement
430 commit time.
431 @retval true Failure
432 @retval false Success */
433 bool commit_inplace_alter_table(TABLE *altered_table,
434 Alter_inplace_info *ha_alter_info,
435 bool commit, const dd::Table *old_dd_tab,
436 dd::Table *new_dd_tab) override;
437 /** @} */
438
440
441 /** Initializes a parallel scan. It creates a scan_ctx that has to
442 be used across all parallel_scan methods. Also, gets the number of threads
443 that would be spawned for parallel scan.
444 @param[out] scan_ctx A scan context created by this method
445 that has to be used in parallel_scan
446 @param[out] num_threads Number of threads to be spawned
447 @param[in] use_reserved_threads true if reserved threads are to be used
448 if we exhaust the max cap of number of
449 parallel read threads that can be
450 spawned at a time
451 @param[in] max_desired_threads Maximum number of desired read threads;
452 passing 0 has no effect, it is ignored;
453 upper-limited by the current value of
454 innodb_parallel_read_threads.
455 @return error code
456 @retval 0 on success */
457 int parallel_scan_init(void *&scan_ctx, size_t *num_threads,
458 bool use_reserved_threads,
459 size_t max_desired_threads) override;
460
461 /** Start parallel read of InnoDB records.
462 @param[in] scan_ctx A scan context created by parallel_scan_init
463 @param[in] thread_ctxs Context for each of the spawned threads
464 @param[in] init_fn Callback called by each parallel load
465 thread at the beginning of the parallel load.
466 @param[in] load_fn Callback called by each parallel load
467 thread when processing of rows is required.
468 @param[in] end_fn Callback called by each parallel load
469 thread when processing of rows has ended.
470 @return error code
471 @retval 0 on success */
472 int parallel_scan(void *scan_ctx, void **thread_ctxs, Reader::Init_fn init_fn,
473 Reader::Load_fn load_fn, Reader::End_fn end_fn) override;
474
475 /** End of the parallel scan.
476 @param[in] scan_ctx A scan context created by parallel_scan_init. */
477 void parallel_scan_end(void *scan_ctx) override;
478
479 /** Check if the table is ready for bulk load
480 @param[in] thd user session
481 @return true iff bulk load can be done on the table. */
482 bool bulk_load_check(THD *thd) const override;
483
484 /** Check the table for any foreign key constraint violations.
485 @return 0 when there are no violations (success) */
486 int check_foreign_constraints(THD *thd, size_t n_threads) const override;
487
488 /** Used during bulk load on a non-empty table, called after the CSV file
489 input is exhausted and we need to copy any existing data from the original
490 table to the duplicated one.
491 @param[in] load_ctx SE load context
492 @param[in] thread_idx loader thread index
493 @param[in] wait_cbk stat callbacks.
494 @return 0 if successful, HA_ERR_GENERIC otherwise. */
496 void *load_ctx, size_t thread_idx,
497 Bulk_load::Stat_callbacks &wait_cbk) const override;
498
499 /** Sets the source table data (table name and key range boundaries) for all
500 loaders.
501 @param[in,out] load_ctx SE load context
502 @param[in] source_table_data vector containing the source table data
503 @return true if successful, false otherwise. */
505 void *load_ctx,
506 const std::vector<Bulk_load::Source_table_data> &source_table_data)
507 const override;
508
509 /** Generates a temporary table name to be used for table duplication during
510 bulk load.
511 @return a temporary table name. */
512 std::string bulk_load_generate_temporary_table_name() const override;
513
514 /** Get the row ID range of the table that we're bulk loading into. Only used
515 when the table has a generated clustered index and is not empty.
516 @param[out] min Minimum ROW_ID in table
517 @param[out] max Maximum ROW_ID in table
518 @return true if successful, false otherwise. */
519 bool bulk_load_get_row_id_range(size_t &min, size_t &max) const override;
520
521 /** Check whether the table is empty */
522 bool is_table_empty() const override;
523
524 /** Get the total memory available for bulk load in innodb buffer pool.
525 @param[in] thd user session
526 @return available memory for bulk load */
527 size_t bulk_load_available_memory(THD *thd) const override;
528
529 /** Begin parallel bulk data load to the table.
530 @param[in] thd user session
531 @param[in] keynr key number to identify the index.
532 @param[in] data_size total data size in bytes
533 @param[in] memory buffer pool memory to be used
534 @param[in] num_threads Number of concurrent threads used for load.
535 @return bulk load context or nullptr if unsuccessful. */
536 void *bulk_load_begin(THD *thd, size_t keynr, size_t data_size, size_t memory,
537 size_t num_threads) override;
538
539 /** Execute bulk load operation. To be called by each of the concurrent
540 threads idenified by thread index.
541 @param[in,out] thd user session
542 @param[in,out] load_ctx load execution context
543 @param[in] thread_idx index of the thread executing
544 @param[in] rows rows to be loaded to the table
545 @param[in] wait_cbk Stat callbacks
546 @return error code. */
547 int bulk_load_execute(THD *thd, void *load_ctx, size_t thread_idx,
548 const Rows_mysql &rows,
549 Bulk_load::Stat_callbacks &wait_cbk) override;
550
551 /** Open a blob for write operation.
552 @param[in,out] thd user session
553 @param[in,out] load_ctx load execution context
554 @param[in] thread_idx index of the thread executing
555 @param[out] blob_ctx a blob context
556 @param[out] blobref a blob reference to be placed in the record.
557 @return 0 on success, error code on failure */
558 int open_blob(THD *thd [[maybe_unused]], void *load_ctx, size_t thread_idx,
559 Blob_context &blob_ctx, unsigned char *blobref) override;
560
561 /** Write to a blob
562 @param[in,out] thd user session
563 @param[in,out] load_ctx load execution context
564 @param[in] thread_idx index of the thread executing
565 @param[in] blob_ctx a blob context
566 @param[out] blobref buffer to hold a blob reference.
567 @param[in] data data to be written to blob.
568 @param[in] data_len length of data to be written in bytes.
569 @return 0 on success, error code on failure */
570 int write_blob(THD *thd [[maybe_unused]], void *load_ctx, size_t thread_idx,
571 Blob_context blob_ctx, unsigned char *blobref,
572 const unsigned char *data, size_t data_len) override;
573
574 /** Close the blob
575 @param[in,out] thd user session
576 @param[in,out] load_ctx load execution context
577 @param[in] thread_idx index of the thread executing
578 @param[in] blob_ctx a blob context
579 @param[out] blobref blob reference will be populated in the provided
580 buffer. The buffer should have enough space (@ref lob::ref_t::SIZE) to hold
581 a blob reference.
582 @return 0 on success, error code on failure */
583 int close_blob(THD *thd [[maybe_unused]], void *load_ctx, size_t thread_idx,
584 Blob_context blob_ctx, byte *blobref) override;
585
586 /** End bulk load operation. Must be called after all execution threads have
587 completed. Must be called even if the bulk load execution failed.
588 @param[in,out] thd user session
589 @param[in,out] load_ctx load execution context
590 @param[in] is_error true, if bulk load execution have failed
591 @return error code. */
592 int bulk_load_end(THD *thd, void *load_ctx, bool is_error) override;
593
595 uint table_changes) override;
596
597 private:
598 /** @name Multi Range Read interface
599 @{ */
600
601 /** Initialize multi range read @see DsMrr_impl::dsmrr_init */
602 int multi_range_read_init(RANGE_SEQ_IF *seq, void *seq_init_param,
603 uint n_ranges, uint mode,
604 HANDLER_BUFFER *buf) override;
605
606 /** Process next multi range read @see DsMrr_impl::dsmrr_next */
607 int multi_range_read_next(char **range_info) override;
608
609 /** Initialize multi range read and get information.
610 @see ha_myisam::multi_range_read_info_const
611 @see DsMrr_impl::dsmrr_info_const */
613 void *seq_init_param, uint n_ranges,
614 uint *bufsz, uint *flags,
615 bool *force_default_mrr,
616 Cost_estimate *cost) override;
617
618 /** Initialize multi range read and get information.
619 @see DsMrr_impl::dsmrr_info */
620 ha_rows multi_range_read_info(uint keyno, uint n_ranges, uint keys,
621 uint *bufsz, uint *flags,
622 Cost_estimate *cost) override;
623
624 /** Attempt to push down an index condition.
625 @param[in] keyno MySQL key number
626 @param[in] idx_cond Index condition to be checked
627 @return idx_cond if pushed; NULL if not pushed */
628 Item *idx_cond_push(uint keyno, Item *idx_cond) override;
629 /** @} */
630
631 private:
632 void update_thd();
633
634 int change_active_index(uint keynr);
635
637
639
641
643
644 /** Resets a query execution 'template'.
645 @see build_template() */
646 void reset_template();
647
648 /** Write Row Interface optimized for Intrinsic table. */
650
651 /** Find out if a Record_buffer is wanted by this handler, and what is
652 the maximum buffer size the handler wants.
653
654 @param[out] max_rows gets set to the maximum number of records to
655 allocate space for in the buffer
656 @retval true if the handler wants a buffer
657 @retval false if the handler does not want a buffer */
658 bool is_record_buffer_wanted(ha_rows *const max_rows) const override;
659
660 /** TRUNCATE an InnoDB table.
661 @param[in] name table name
662 @param[in] form table definition
663 @param[in,out] table_def dd::Table describing table to be
664 truncated. Can be adjusted by SE, the changes will be saved into
665 the data-dictionary at statement commit time.
666 @return error number
667 @retval 0 on success */
668 int truncate_impl(const char *name, TABLE *form, dd::Table *table_def);
669
670 protected:
671 /** Enter InnoDB engine after checking max allowed threads.
672 @return mysql error code. */
674
675 /** Leave Innodb, if no more tickets are left */
677
678 void update_thd(THD *thd);
679
680 int general_fetch(uchar *buf, uint direction, uint match_mode);
681
682 virtual dict_index_t *innobase_get_index(uint keynr);
683
684 /** Builds a 'template' to the m_prebuilt struct. The template is used in fast
685 retrieval of just those column values MySQL needs in its processing.
686 @param[in] whole_row true if access is needed to a whole row, false if
687 accessing individual fields is enough */
688 void build_template(bool whole_row);
689
690 /** Returns statistics information of the table to the MySQL interpreter, in
691 various fields of the handle object.
692 @param[in] flag what information is requested
693 HA_STATUS_NO_LOCK is supported only for:
694 ha_statistics::delete_length
695 it is not supported for others like:
696 ha_statistics::records
697 But it will not lock for the duration of stats
698 calculation. Only during copy to make sure
699 stats are consistent.
700 @param[in] is_analyze True if called from "::analyze()".
701 @return HA_ERR_* error code or 0 */
702 virtual int info_low(uint flag, bool is_analyze);
703
704 /**
705 MySQL calls this method at the end of each statement. This method
706 exists for readability only, called from reset(). The name reset()
707 doesn't give any clue that it is called at the end of a statement. */
708 int end_stmt();
709
710 /** Implementation of prepare_inplace_alter_table()
711 @tparam Table dd::Table or dd::Partition
712 @param[in] altered_table TABLE object for new version of table.
713 @param[in,out] ha_alter_info Structure describing changes to be done
714 by ALTER TABLE and holding data used
715 during in-place alter.
716 @param[in] old_dd_tab dd::Table object representing old
717 version of the table
718 @param[in,out] new_dd_tab dd::Table object representing new
719 version of the table
720 @retval true Failure
721 @retval false Success */
722 template <typename Table>
723 bool prepare_inplace_alter_table_impl(TABLE *altered_table,
724 Alter_inplace_info *ha_alter_info,
725 const Table *old_dd_tab,
726 Table *new_dd_tab);
727
728 /** Implementation of inplace_alter_table()
729 @tparam Table dd::Table or dd::Partition
730 @param[in] altered_table TABLE object for new version of table.
731 @param[in,out] ha_alter_info Structure describing changes to be done
732 by ALTER TABLE and holding data used
733 during in-place alter.
734 the table. Can be adjusted by this call. Changes to the table definition will
735 be persisted in the data-dictionary at statement commit time.
736 @retval true Failure
737 @retval false Success
738 */
739 template <typename Table>
740 bool inplace_alter_table_impl(TABLE *altered_table,
741 Alter_inplace_info *ha_alter_info);
742
743 /** Implementation of commit_inplace_alter_table()
744 @tparam Table dd::Table or dd::Partition
745 @param[in] altered_table TABLE object for new version of table.
746 @param[in,out] ha_alter_info Structure describing changes to be done
747 by ALTER TABLE and holding data used
748 during in-place alter.
749 @param[in] commit True to commit or false to rollback.
750 @param[in,out] new_dd_tab Table object for the new version of the
751 table. Can be adjusted by this call.
752 Changes to the table definition
753 will be persisted in the data-dictionary
754 at statement version of it.
755 @retval true Failure
756 @retval false Success */
757 template <typename Table>
758 bool commit_inplace_alter_table_impl(TABLE *altered_table,
759 Alter_inplace_info *ha_alter_info,
760 bool commit, Table *new_dd_tab);
761
762 /**
763 Return max limits for a single set of multi-valued keys
764
765 @param[out] num_keys number of keys to store
766 @param[out] keys_length total length of keys, bytes
767 */
768 void mv_key_capacity(uint *num_keys, size_t *keys_length) const override;
769
770 /** Can reuse the template. Mainly used for partition.
771 @retval true Can reuse the mysql_template */
772 virtual bool can_reuse_mysql_template() const { return false; }
773
774 /** The multi range read session object */
776
777 /** Save CPU time with prebuilt/cached data structures */
779
780 /** Thread handle of the user currently using the handler;
781 this is set in external_lock function */
783
784 /** information for MySQL table locking */
786
787 /** buffer used in updates */
789
790 /** the size of upd_buf in bytes */
792
793 /** Flags that specify the handler instance (table) capability. */
795
796 /** this is set to 1 when we are starting a table scan but have
797 not yet fetched any row, else false */
799
800 /*!< match mode of the latest search: ROW_SEL_EXACT,
801 ROW_SEL_EXACT_PREFIX, or undefined */
803
804 /** this field is used to remember the original select_lock_type that
805 was decided in ha_innodb.cc,":: store_lock()", "::external_lock()",
806 etc. */
808
809 /** If mysql has locked with external_lock() */
811
812 /** Get the table stats.
813 @param[in] flag flag indicating which statistics to return
814 @param[in] ib_table table
815 @param[out] n_rows estimated number of rows
816 @param[out] stat_clustered_index_size size of the clustered index
817 @param[out] stat_sum_of_other_index_sizes total size of all indexes */
818 void info_low_table_stats(uint flag, const dict_table_t *ib_table,
819 uint64_t &n_rows, ulint &stat_clustered_index_size,
820 ulint &stat_sum_of_other_index_sizes) const;
821
822 /** Get number of records per key. Save them into array ib_table->key_info.
823 @param[in] flag flag indicating which statistics to return
824 @param[in,out] ib_table table */
825 void info_low_key(uint flag, const dict_table_t *ib_table);
826};
827
828struct trx_t;
829
830extern const struct _ft_vft ft_vft_result;
831
832/** Return the number of read threads for this session.
833@param[in] thd Session instance, or nullptr to query the global
834 innodb_parallel_read_threads value. */
836
837/** Structure Returned by ha_innobase::ft_init_ext() */
838typedef struct new_ft_info {
844
845/** Allocates an InnoDB transaction for a MySQL handler object for DML.
846@param[in] hton Innobase handlerton.
847@param[in] thd MySQL thd (connection) object.
848@param[in] trx transaction to register. */
849void innobase_register_trx(handlerton *hton, THD *thd, trx_t *trx);
850
851/**
852Allocates an InnoDB transaction for a MySQL handler object.
853@return InnoDB transaction handle */
854trx_t *innobase_trx_allocate(THD *thd); /*!< in: user thread handle */
855
856/** Maps a MySQL trx isolation level code to the InnoDB isolation level code.
857@param[in] iso MySQL isolation level code
858@return InnoDB isolation level */
861
862/** Match index columns between MySQL and InnoDB.
863This function checks whether the index column information
864is consistent between KEY info from mysql and that from innodb index.
865@param[in] key_info Index info from mysql
866@param[in] index_info Index info from InnoDB
867@return true if all column types match. */
868bool innobase_match_index_columns(const KEY *key_info,
869 const dict_index_t *index_info);
870
871/** This function checks each index name for a table against reserved
872 system default primary index name 'GEN_CLUST_INDEX'. If a name
873 matches, this function pushes an warning message to the client,
874 and returns true.
875 @return true if the index name matches the reserved name */
876[[nodiscard]] bool innobase_index_name_is_reserved(
877 THD *thd, /*!< in/out: MySQL connection */
878 const KEY *key_info, /*!< in: Indexes to be
879 created */
880 ulint num_of_keys); /*!< in: Number of indexes to
881 be created. */
882
883/** Check if the explicit tablespace targeted is file_per_table.
884@param[in] create_info Metadata for the table to create.
885@return true if the table is intended to use a file_per_table tablespace. */
887 const HA_CREATE_INFO *create_info) {
888 return (create_info->tablespace != nullptr &&
889 (0 ==
890 strcmp(create_info->tablespace, dict_sys_t::s_file_per_table_name)));
891}
892
893/** Check if table will be explicitly put in an existing shared general
894or system tablespace.
895@param[in] create_info Metadata for the table to create.
896@return true if the table will use a shared general or system tablespace. */
897static inline bool tablespace_is_shared_space(
898 const HA_CREATE_INFO *create_info) {
899 return (create_info->tablespace != nullptr &&
900 create_info->tablespace[0] != '\0' &&
901 (0 !=
902 strcmp(create_info->tablespace, dict_sys_t::s_file_per_table_name)));
903}
904
905/** Check if table will be explicitly put in a general tablespace.
906@param[in] create_info Metadata for the table to create.
907@return true if the table will use a general tablespace. */
909 const HA_CREATE_INFO *create_info) {
910 return (
911 create_info->tablespace != nullptr &&
912 create_info->tablespace[0] != '\0' &&
913 (0 !=
914 strcmp(create_info->tablespace, dict_sys_t::s_file_per_table_name)) &&
915 (0 != strcmp(create_info->tablespace, dict_sys_t::s_temp_space_name)) &&
916 (0 != strcmp(create_info->tablespace, dict_sys_t::s_sys_space_name)));
917}
918
919/** Check if tablespace is shared tablespace.
920@param[in] tablespace_name Name of the tablespace
921@return true if tablespace is a shared tablespace. */
922static inline bool is_shared_tablespace(const char *tablespace_name) {
923 if (tablespace_name != nullptr && tablespace_name[0] != '\0' &&
924 (strcmp(tablespace_name, dict_sys_t::s_file_per_table_name) != 0)) {
925 return true;
926 }
927 return false;
928}
929
930constexpr uint32_t SIZE_MB = 1024 * 1024;
931
932/** Validate AUTOEXTEND_SIZE attribute for a tablespace.
933@param[in] ext_size Value of autoextend_size attribute
934@return DB_SUCCESS if the value of AUTOEXTEND_SIZE is valid. */
935static inline int validate_autoextend_size_value(uint64_t ext_size) {
936 ut_ad(ext_size > 0);
937
938 page_no_t extent_size_pages = fsp_get_extent_size_in_pages(
939 {static_cast<uint32_t>(srv_page_size),
940 static_cast<uint32_t>(srv_page_size), false});
941
942 /* Validate following for the AUTOEXTEND_SIZE attribute
943 1. The autoextend_size should be a multiple of size of 4 extents
944 2. The autoextend_size value should be between size of 4 extents and 4G */
945 if (ext_size < (FSP_FREE_ADD * extent_size_pages * srv_page_size) ||
946 ext_size > FSP_MAX_AUTOEXTEND_SIZE) {
947 my_error(ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE, MYF(0),
948 (FSP_FREE_ADD * extent_size_pages * srv_page_size) / SIZE_MB,
950 return ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE;
951 }
952
953 if ((ext_size / srv_page_size) % (FSP_FREE_ADD * extent_size_pages) != 0) {
954 my_error(ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE, MYF(0),
955 FSP_FREE_ADD * extent_size_pages * srv_page_size / SIZE_MB);
956 return ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE;
957 }
958
959 return DB_SUCCESS;
960}
961
962/** Parse hint for table and its indexes, and update the information
963in dictionary.
964@param[in] thd Connection thread
965@param[in,out] table Target table
966@param[in] table_share Table definition */
968 const TABLE_SHARE *table_share);
969
970/** Obtain the InnoDB transaction of a MySQL thread.
971@param[in,out] thd MySQL thread handler.
972@return reference to transaction pointer */
973trx_t *&thd_to_trx(THD *thd);
974
975/** Class for handling create table information. */
977 public:
978 /** Constructor.
979 Used in two ways:
980 - all but file_per_table is used, when creating the table.
981 - all but name/path is used, when validating options and using flags. */
983 char *table_name, char *remote_path, char *tablespace,
984 bool file_per_table, bool skip_strict, uint32_t old_flags,
985 uint32_t old_flags2, bool is_partition)
986 : m_thd(thd),
988 m_form(form),
989 m_create_info(create_info),
991 m_remote_path(remote_path),
992 m_tablespace(tablespace),
993 m_innodb_file_per_table(file_per_table),
994 m_flags(old_flags),
995 m_flags2(old_flags2),
998
999 /** Initialize the object. */
1000 int initialize();
1001
1002 /** Set m_tablespace_type. */
1003 void set_tablespace_type(bool table_being_altered_is_file_per_table);
1004
1005 /** Create the internal innodb table.
1006 @param[in] dd_table dd::Table or nullptr for intrinsic table
1007 @param[in] old_part_table dd::Table from an old partition for partitioned
1008 table, NULL otherwise.
1009 @return 0 or error number */
1010 int create_table(const dd::Table *dd_table, const dd::Table *old_part_table);
1011
1012 /** Update the internal data dictionary. */
1014
1015 /** Update the global data dictionary.
1016 @param[in] dd_table dd::Table or dd::Partition
1017 @retval 0 On success
1018 @retval error number On failure */
1019 template <typename Table>
1020 int create_table_update_global_dd(Table *dd_table);
1021
1022 /** Validates the create options. Checks that the options
1023 KEY_BLOCK_SIZE, ROW_FORMAT, DATA DIRECTORY, TEMPORARY & TABLESPACE
1024 are compatible with each other and other settings.
1025 These CREATE OPTIONS are not validated here unless innodb_strict_mode
1026 is on. With strict mode, this function will report each problem it
1027 finds using a custom message with error code
1028 ER_ILLEGAL_HA_CREATE_OPTION, not its built-in message.
1029 @return NULL if valid, string name of bad option if not. */
1030 const char *create_options_are_invalid();
1031
1032 private:
1033 /** Put a warning or error message to the error log for the
1034 DATA DIRECTORY option.
1035 @param[in] msg The reason that data directory is wrong.
1036 @param[in] ignore If true, append a message about ignoring
1037 the data directory location. */
1038 void log_error_invalid_location(std::string &msg, bool ignore);
1039
1040 /** Validate DATA DIRECTORY option. */
1042
1043 public:
1044 /** Validate TABLESPACE option. */
1046
1047 /** Validate COMPRESSION option. */
1049
1050 /** Prepare to create a table. */
1051 int prepare_create_table(const char *name);
1052
1053 /** Determine InnoDB table flags.
1054 If strict_mode=OFF, this will adjust the flags to what should be assumed.
1055 However, if an existing general tablespace is being targeted, we will NOT
1056 assume anything or adjust these flags.
1057 @retval true if successful, false if error */
1058 bool innobase_table_flags();
1059
1060 /** Set flags and append '/' to remote path if necessary. */
1061 void set_remote_path_flags();
1062
1063 /** Get table flags. */
1064 uint32_t flags() const { return (m_flags); }
1065
1066 /** Get table flags2. */
1067 uint32_t flags2() const { return (m_flags2); }
1068
1069 /** Reset table flags. */
1070 void flags_reset() { m_flags = 0; }
1071
1072 /** Reset table flags2. */
1073 void flags2_reset() { m_flags2 = 0; }
1074
1075 /** whether to skip strict check. */
1076 bool skip_strict() const { return (m_skip_strict); }
1077
1078 /** Return table name. */
1079 const char *table_name() const { return (m_table_name); }
1080
1081 THD *thd() const { return (m_thd); }
1082
1083 inline bool is_intrinsic_temp_table() const {
1084 /* DICT_TF2_INTRINSIC implies DICT_TF2_TEMPORARY */
1086 return ((m_flags2 & DICT_TF2_INTRINSIC) != 0);
1087 }
1088
1089 /** @return true only if table is temporary and not intrinsic */
1090 inline bool is_temp_table() const {
1091 return (((m_flags2 & DICT_TF2_TEMPORARY) != 0) &&
1092 ((m_flags2 & DICT_TF2_INTRINSIC) == 0));
1093 }
1094
1095 /** Detach the just created table and its auxiliary tables if exist. */
1096 void detach();
1097
1098 /** Normalizes a table name string.
1099 A normalized name consists of the database name catenated to '/' and
1100 table name. An example: test/mytable. On case insensitive file system
1101 normalization converts name to lower case.
1102 @param[in,out] norm_name Buffer to return the normalized name in.
1103 @param[in] name Table name string.
1104 @return true if successful. */
1105 static bool normalize_table_name(char *norm_name, const char *name);
1106
1107 private:
1108 /** Parses the table name into normal name and either temp path or
1109 remote path if needed.*/
1110 int parse_table_name(const char *name);
1111
1112 /** Create a table definition to an InnoDB database.
1113 @param[in] dd_table dd::Table or nullptr for intrinsic table
1114 @param[in] old_part_table dd::Table from an old partition for partitioned
1115 table, NULL otherwise.
1116 @return HA_* level error */
1117 int create_table_def(const dd::Table *dd_table,
1118 const dd::Table *old_part_table);
1119
1120 /** Initialize the autoinc of this table if necessary, which should
1121 be called before we flush logs, so autoinc counter can be persisted. */
1122 void initialize_autoinc();
1123
1124 /** Connection thread handle. */
1126
1127 /** InnoDB transaction handle. */
1129
1130 /** Information on table columns and indexes. */
1132
1133 /** Create options. */
1135
1136 /** Table name */
1138 /** Remote path (DATA DIRECTORY) or zero length-string */
1140 /** Tablespace name or zero length-string. */
1142
1143 /** The newly created InnoDB table object. This is currently only
1144 used in this class, since the new table is not evictable until
1145 final success/failure, it can be accessed directly. */
1147
1148 /** Local copy of srv_file_per_table. */
1150
1151 /** Allow file_per_table for this table either because:
1152 1) the setting innodb_file_per_table=on,
1153 2) it was explicitly requested by tablespace=innodb_file_per_table.
1154 3) the table being altered is currently file_per_table */
1156
1157 /** After all considerations, this shows whether we will actually
1158 create a table and tablespace using file-per-table. */
1160
1161 /** Using DATA DIRECTORY */
1163
1164 /** Using a Shared General Tablespace */
1166
1167 /** Table flags */
1168 uint32_t m_flags;
1169
1170 /** Table flags2 */
1171 uint32_t m_flags2;
1172
1173 /** Skip strict check */
1175
1176 /** True if this table is a partition */
1178};
1179
1180/** Class of basic DDL implementation, for CREATE/DROP/RENAME TABLE */
1182 public:
1183 /** Create an InnoDB table.
1184 @tparam Table dd::Table or dd::Partition
1185 @param[in,out] thd THD object
1186 @param[in] name Table name, format: "db/table_name"
1187 @param[in] form Table format; columns and index
1188 information
1189 @param[in] create_info Create info(including create statement
1190 string)
1191 @param[in,out] dd_tab dd::Table describing table to be created
1192 @param[in] file_per_table whether to create a tablespace too
1193 @param[in] evictable whether the caller wants the
1194 dict_table_t to be kept in memory
1195 @param[in] skip_strict whether to skip strict check for create
1196 option
1197 @param[in] old_flags old Table flags
1198 @param[in] old_flags2 old Table flags2
1199 @param[in] old_dd_table Table def for old table. Used in truncate or
1200 while adding a new partition
1201 @return error number
1202 @retval 0 on success */
1203 template <typename Table>
1204 static int create_impl(THD *thd, const char *name, TABLE *form,
1205 HA_CREATE_INFO *create_info, Table *dd_tab,
1206 bool file_per_table, bool evictable, bool skip_strict,
1207 uint32_t old_flags, uint32_t old_flags2,
1208 const dd::Table *old_dd_table);
1209
1210 /** Drop an InnoDB table.
1211 @tparam Table dd::Table or dd::Partition
1212 @param[in,out] thd THD object
1213 @param[in] name table name
1214 @param[in] dd_tab dd::Table describing table to be dropped
1215 @param[in] td MySQL table definition
1216 @return error number
1217 @retval 0 on success */
1218
1219 template <typename Table>
1220 static int delete_impl(THD *thd, const char *name, const Table *dd_tab,
1221 const TABLE *td);
1222
1223 /** Renames an InnoDB table.
1224 @tparam Table dd::Table or dd::Partition
1225 @param[in,out] thd THD object
1226 @param[in] from old name of the table
1227 @param[in] to new name of the table
1228 @param[in] from_table dd::Table or dd::Partition of the table
1229 with old name
1230 @param[in] to_table dd::Table or dd::Partition of the table
1231 with new name
1232 @param[in] td MySQL table definition
1233 @return error number
1234 @retval 0 on success */
1235
1236 template <typename Table>
1237 static int rename_impl(THD *thd, const char *from, const char *to,
1238 const Table *from_table, const Table *to_table,
1239 const TABLE *td);
1240};
1241
1242/** Class to handle TRUNCATE for one InnoDB table or one partition */
1243template <typename Table>
1245 public:
1246 /** Constructor
1247 @param[in] thd THD object
1248 @param[in] name normalized table name
1249 @param[in] form Table format; columns and index information
1250 @param[in] dd_table dd::Table or dd::Partition
1251 @param[in] keep_autoinc true to remember original autoinc counter
1252 @param[in] table_truncate true if this is full table truncate */
1253 innobase_truncate(THD *thd, const char *name, TABLE *form, Table *dd_table,
1254 bool keep_autoinc, bool table_truncate)
1255 : m_thd(thd),
1256 m_name(name),
1257 m_dd_table(dd_table),
1258 m_trx(nullptr),
1260 m_form(form),
1261 m_create_info(),
1262 m_file_per_table(false),
1263 m_keep_autoinc(keep_autoinc),
1264 m_table_truncate(table_truncate),
1265 m_flags(0),
1266 m_flags2(0) {}
1267
1268 /** Destructor */
1270
1271 /** Open the table/partition to be truncated
1272 @param[out] innodb_table InnoDB table object opened
1273 @return error number or 0 on success */
1274 int open_table(dict_table_t *&innodb_table);
1275
1276 /** Do the truncate of the table/partition
1277 @return error number or 0 on success */
1278 int exec();
1279
1280 private:
1281 /** Prepare for truncate
1282 @return error number or 0 on success */
1283 int prepare();
1284
1285 /** Do the real truncation
1286 @return error number or 0 on success */
1287 int truncate();
1288
1289 /** Rename tablespace file name
1290 @return error number or 0 on success */
1291 int rename_tablespace();
1292
1293 /** Cleanup */
1294 void cleanup();
1295
1296 /** Reload the FK related information
1297 @return error number or 0 on success */
1298 int load_fk();
1299
1300 private:
1301 /** THD object */
1303
1304 /** Normalized table name */
1305 const char *m_name;
1306
1307 /** dd::Table or dd::Partition */
1309
1310 /** Transaction attached to current thd */
1312
1313 /** InnoDB table object for the table/partition */
1315
1316 /** Table format */
1318
1319 /** Create information */
1321
1322 /** True if this table/partition is file per table */
1324
1325 /** True if the original autoinc counter should be kept. It's
1326 specified by caller, however if the table has no AUTOINC column,
1327 it would be reset to false internally */
1329
1330 /** For a prtition table, this is true if full table is truncated. If only
1331 a partition is truncated, it is set to false. */
1333
1334 /** flags of the table to be truncated, which should not change */
1335 uint32_t m_flags;
1336
1337 /** flags2 of the table to be truncated, which should not change */
1338 uint32_t m_flags2;
1339};
1340
1341/**
1342Initialize the table FTS stopword list
1343@return true if success */
1344[[nodiscard]] bool innobase_fts_load_stopword(
1345 dict_table_t *table, /*!< in: Table has the FTS */
1346 trx_t *trx, /*!< in: transaction */
1347 THD *thd); /*!< in: current thread */
1348
1349/** Some defines for innobase_fts_check_doc_id_index() return value */
1355
1356/**
1357Check whether the table has a unique index with FTS_DOC_ID_INDEX_NAME
1358on the Doc ID column.
1359@return the status of the FTS_DOC_ID index */
1361 const dict_table_t *table, /*!< in: table definition */
1362 const TABLE *altered_table, /*!< in: MySQL table
1363 that is being altered */
1364 ulint *fts_doc_col_no); /*!< out: The column number for
1365 Doc ID */
1366
1367/**
1368Check whether the table has a unique index with FTS_DOC_ID_INDEX_NAME
1369on the Doc ID column in MySQL create index definition.
1370@return FTS_EXIST_DOC_ID_INDEX if there exists the FTS_DOC_ID index,
1371FTS_INCORRECT_DOC_ID_INDEX if the FTS_DOC_ID index is of wrong format */
1373 ulint n_key, /*!< in: Number of keys */
1374 const KEY *key_info); /*!< in: Key definitions */
1375
1376/**
1377Copy table flags from MySQL's TABLE_SHARE into an InnoDB table object.
1378Those flags are stored in .frm file and end up in the MySQL table object,
1379but are frequently used inside InnoDB so we keep their copies into the
1380InnoDB table object. */
1382 dict_table_t *innodb_table, /*!< in/out: InnoDB table */
1383 const TABLE_SHARE *table_share); /*!< in: table share */
1384
1385/** Set up base columns for virtual column
1386@param[in] table the InnoDB table
1387@param[in] field MySQL field
1388@param[in,out] v_col virtual column to be set up */
1389void innodb_base_col_setup(dict_table_t *table, const Field *field,
1390 dict_v_col_t *v_col);
1391
1392/** Set up base columns for stored column
1393@param[in] table InnoDB table
1394@param[in] field MySQL field
1395@param[in,out] s_col stored column */
1397 const Field *field, dict_s_col_t *s_col);
1398
1399/** whether this is a stored column */
1400static inline bool innobase_is_s_fld(const Field *field) {
1401 return field->gcol_info && field->stored_in_db;
1402}
1403
1404/** Whether this is a computed multi-value virtual column.
1405This condition check should be equal to the following one:
1406(innobase_is_v_fld(field) && (field)->gcol_info->expr_item &&
1407 field->gcol_info->expr_item->returns_array())
1408*/
1409static inline bool innobase_is_multi_value_fld(const Field *field) {
1410 return field->is_array();
1411}
1412
1413static inline bool normalize_table_name(char *norm_name, const char *name) {
1415}
1416
1417/** Note that a transaction has been registered with MySQL.
1418@param[in] trx Transaction.
1419@return true if transaction is registered with MySQL 2PC coordinator */
1420inline bool trx_is_registered_for_2pc(const trx_t *trx) {
1421 return (trx->is_registered == 1);
1422}
1423
1424/** Converts an InnoDB error code to a MySQL error code.
1425Also tells to MySQL about a possible transaction rollback inside InnoDB caused
1426by a lock wait timeout or a deadlock.
1427@param[in] error InnoDB error code.
1428@param[in] flags InnoDB table flags or 0.
1429@param[in] thd MySQL thread or NULL.
1430@return MySQL error code */
1432
1433/** Converts a search mode flag understood by MySQL to a flag understood
1434by InnoDB.
1435@param[in] find_flag MySQL search mode flag.
1436@return InnoDB search mode flag. */
1438 enum ha_rkey_function find_flag);
1439
1440extern bool innobase_stats_on_metadata;
1441
1442/** Calculate Record Per Key value.
1443Need to exclude the NULL value if innodb_stats_method is set to "nulls_ignored"
1444@param[in] index InnoDB index.
1445@param[in] i The column we are calculating rec per key.
1446@param[in] records Estimated total records.
1447@return estimated record per key value */
1449 ha_rows records);
1450
1451/** Build template for the virtual columns and their base columns. This
1452is done when the table first opened.
1453@param[in] table MySQL TABLE
1454@param[in] ib_table InnoDB dict_table_t
1455@param[in,out] s_templ InnoDB template structure
1456@param[in] add_v new virtual columns added along with
1457 add index call
1458@param[in] locked true if dict_sys mutex is held
1459@param[in] share_tbl_name original MySQL table name */
1460void innobase_build_v_templ(const TABLE *table, const dict_table_t *ib_table,
1461 dict_vcol_templ_t *s_templ,
1462 const dict_add_v_col_t *add_v, bool locked,
1463 const char *share_tbl_name);
1464
1465/** Callback used by MySQL server layer to initialize
1466the table virtual columns' template
1467@param[in] table MySQL TABLE
1468@param[in,out] ib_table InnoDB table */
1469void innobase_build_v_templ_callback(const TABLE *table, void *ib_table);
1470
1471/** Callback function definition, used by MySQL server layer to initialized
1472the table virtual columns' template */
1473typedef void (*my_gcolumn_templatecallback_t)(const TABLE *, void *);
1474
1475/** Drop the statistics for a specified table, and mark it as discard
1476after DDL
1477@param[in,out] thd THD object
1478@param[in,out] table InnoDB table object */
1480#endif /* ha_innodb_h */
uint32_t page_no_t
Page number.
Definition: api0api.h:47
app_data_ptr new_data(u_int n, char *val, cons_type consensus)
Kerberos Client Authentication nullptr
Definition: auth_kerberos_client_plugin.cc:247
Services for bulk data conversion and load to SE.
Class describing changes to be done by ALTER TABLE.
Definition: handler.h:3525
A helper class for numeric sysvars which can be read in thread-safe way.
Definition: ut0atomic_sysvar.h:36
Used to store optimizer cost estimates.
Definition: handler.h:4040
Definition: handler.h:7561
Definition: field.h:573
virtual bool is_array() const
Whether the field is a typed array.
Definition: field.h:1826
Value_generator * gcol_info
Definition: field.h:814
bool stored_in_db
Indication that the field is physically stored in tables rather than just generated on SQL queries.
Definition: field.h:820
Wrapper for struct ft_hints.
Definition: handler.h:4307
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:929
Definition: key.h:113
Definition: sql_list.h:494
Traverse an index in the leaf page block list order and send records to adapter.
Definition: row0pread-adapter.h:43
handler::Load_init_cbk Init_fn
Definition: row0pread-adapter.h:55
handler::Load_end_cbk End_fn
Definition: row0pread-adapter.h:53
handler::Load_cbk Load_fn
Definition: row0pread-adapter.h:51
Implements the row and column memory management for parse and load operations.
Definition: bulk_data_service.h:325
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:169
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
Class for handling create table information.
Definition: ha_innodb.h:976
bool is_intrinsic_temp_table() const
Definition: ha_innodb.h:1083
bool m_use_file_per_table
After all considerations, this shows whether we will actually create a table and tablespace using fil...
Definition: ha_innodb.h:1159
int prepare_create_table(const char *name)
Prepare to create a table.
Definition: ha_innodb.cc:13925
const char * table_name() const
Return table name.
Definition: ha_innodb.h:1079
uint32_t m_flags
Table flags.
Definition: ha_innodb.h:1168
THD * m_thd
Connection thread handle.
Definition: ha_innodb.h:1125
bool create_option_tablespace_is_valid()
Validate TABLESPACE option.
Definition: ha_innodb.cc:12663
char * m_remote_path
Remote path (DATA DIRECTORY) or zero length-string.
Definition: ha_innodb.h:1139
int create_table_update_global_dd(Table *dd_table)
Update the global data dictionary.
Definition: ha_innodb.cc:14298
bool create_option_compression_is_valid()
Validate COMPRESSION option.
Definition: ha_innodb.cc:12906
void flags2_reset()
Reset table flags2.
Definition: ha_innodb.h:1073
void initialize_autoinc()
Initialize the autoinc of this table if necessary, which should be called before we flush logs,...
Definition: ha_innodb.cc:13862
HA_CREATE_INFO * m_create_info
Create options.
Definition: ha_innodb.h:1134
bool is_temp_table() const
Definition: ha_innodb.h:1090
int initialize()
Initialize the object.
Definition: ha_innodb.cc:13834
dict_table_t * m_table
The newly created InnoDB table object.
Definition: ha_innodb.h:1146
void detach()
Detach the just created table and its auxiliary tables if exist.
Definition: ha_innodb.cc:13673
trx_t * m_trx
InnoDB transaction handle.
Definition: ha_innodb.h:1128
bool m_partition
True if this table is a partition.
Definition: ha_innodb.h:1177
uint32_t flags2() const
Get table flags2.
Definition: ha_innodb.h:1067
int create_table(const dd::Table *dd_table, const dd::Table *old_part_table)
Create the internal innodb table.
Definition: ha_innodb.cc:14039
static bool normalize_table_name(char *norm_name, const char *name)
Normalizes a table name string.
Definition: ha_innodb.cc:6721
bool m_use_data_dir
Using DATA DIRECTORY.
Definition: ha_innodb.h:1162
char * m_tablespace
Tablespace name or zero length-string.
Definition: ha_innodb.h:1141
bool m_allow_file_per_table
Allow file_per_table for this table either because: 1) the setting innodb_file_per_table=on,...
Definition: ha_innodb.h:1155
bool m_use_shared_space
Using a Shared General Tablespace.
Definition: ha_innodb.h:1165
uint32_t m_flags2
Table flags2.
Definition: ha_innodb.h:1171
bool m_skip_strict
Skip strict check.
Definition: ha_innodb.h:1174
int parse_table_name(const char *name)
Parses the table name into normal name and either temp path or remote path if needed.
Definition: ha_innodb.cc:13339
create_table_info_t(THD *thd, TABLE *form, HA_CREATE_INFO *create_info, char *table_name, char *remote_path, char *tablespace, bool file_per_table, bool skip_strict, uint32_t old_flags, uint32_t old_flags2, bool is_partition)
Constructor.
Definition: ha_innodb.h:982
int create_table_update_dict()
Update the internal data dictionary.
Definition: ha_innodb.cc:14247
void set_tablespace_type(bool table_being_altered_is_file_per_table)
Set m_tablespace_type.
Definition: ha_innodb.cc:13803
bool m_innodb_file_per_table
Local copy of srv_file_per_table.
Definition: ha_innodb.h:1149
bool innobase_table_flags()
Determine InnoDB table flags.
Definition: ha_innodb.cc:13407
const TABLE * m_form
Information on table columns and indexes.
Definition: ha_innodb.h:1131
void set_remote_path_flags()
Set flags and append '/' to remote path if necessary.
Definition: ha_innopart.cc:2376
char * m_table_name
Table name.
Definition: ha_innodb.h:1137
void log_error_invalid_location(std::string &msg, bool ignore)
Put a warning or error message to the error log for the DATA DIRECTORY option.
Definition: ha_innodb.cc:12468
uint32_t flags() const
Get table flags.
Definition: ha_innodb.h:1064
bool skip_strict() const
whether to skip strict check.
Definition: ha_innodb.h:1076
void flags_reset()
Reset table flags.
Definition: ha_innodb.h:1070
THD * thd() const
Definition: ha_innodb.h:1081
const char * create_options_are_invalid()
Validates the create options.
Definition: ha_innodb.cc:12970
bool create_option_data_directory_is_valid(bool ignore=false)
Validate DATA DIRECTORY option.
Definition: ha_innodb.cc:12489
int create_table_def(const dd::Table *dd_table, const dd::Table *old_part_table)
Create a table definition to an InnoDB database.
Definition: ha_innodb.cc:11621
Definition: table.h:47
The class defining a handle to an InnoDB table.
Definition: ha_innodb.h:94
THD * m_user_thd
Thread handle of the user currently using the handler; this is set in external_lock function.
Definition: ha_innodb.h:782
void mv_key_capacity(uint *num_keys, size_t *keys_length) const override
Return max limits for a single set of multi-valued keys.
Definition: ha_innodb.cc:24304
int reset() override
MySQL calls this method at the end of each statement.
Definition: ha_innodb.cc:18790
int open_blob(THD *thd, void *load_ctx, size_t thread_idx, Blob_context &blob_ctx, unsigned char *blobref) override
Open a blob for write operation.
Definition: handler0alter.cc:11426
int ft_init() override
Initialize FT index scan.
Definition: ha_innodb.cc:11164
bool is_table_empty() const override
Check whether the table is empty.
Definition: handler0alter.cc:11214
int parallel_scan_init(void *&scan_ctx, size_t *num_threads, bool use_reserved_threads, size_t max_desired_threads) override
Initializes a parallel scan.
Definition: handler0alter.cc:1465
Table_flags table_flags() const override
Get the table flags to use for the statement.
Definition: ha_innodb.cc:6610
DsMrr_impl m_ds_mrr
The multi range read session object.
Definition: ha_innodb.h:775
int disable_indexes(uint mode) override
Disable indexes.
Definition: ha_innodb.cc:18376
int sample_init(void *&scan_ctx, double sampling_percentage, int sampling_seed, enum_sampling_method sampling_method, const bool tablesample) override
Initialize sampling.
Definition: ha_innodb.cc:10963
int delete_table(const char *name, const dd::Table *table_def, enum enum_sql_command sqlcom)
Drop a table.
uchar * m_upd_buf
buffer used in updates
Definition: ha_innodb.h:788
Item * idx_cond_push(uint keyno, Item *idx_cond) override
Attempt to push down an index condition.
Definition: ha_innodb.cc:24266
int general_fetch(uchar *buf, uint direction, uint match_mode)
Reads the next or previous row from a cursor, which must have previously been positioned using index_...
Definition: ha_innodb.cc:10805
uint m_last_match_mode
Definition: ha_innodb.h:802
int rnd_pos(uchar *buf, uchar *pos) override
Fetches a row from the table based on a row reference.
Definition: ha_innodb.cc:11133
int extra(ha_extra_function operation) override
Tells something additional to the handler about how to do things.
Definition: ha_innodb.cc:18660
void build_template(bool whole_row)
Builds a 'template' to the m_prebuilt struct.
Definition: ha_innodb.cc:8644
int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info, dd::Table *table_def) override
Create an InnoDB table.
Definition: ha_innodb.cc:15382
bool is_record_buffer_wanted(ha_rows *const max_rows) const override
Find out if a Record_buffer is wanted by this handler, and what is the maximum buffer size the handle...
Definition: ha_innodb.cc:24285
double scan_time() override
How many seeks it will take to read through the table.
Definition: ha_innodb.cc:17148
void innobase_initialize_autoinc()
Set the autoinc column max value.
Definition: ha_innodb.cc:7338
int discard_or_import_tablespace(bool discard, dd::Table *table_def) override
Discards or imports an InnoDB tablespace.
Definition: ha_innodb.cc:15415
handler * clone(const char *name, MEM_ROOT *mem_root) override
Definition: ha_innodb.cc:7928
void srv_concurrency_exit()
Leave Innodb, if no more tickets are left.
Definition: ha_innodb.cc:2968
ha_rows multi_range_read_info(uint keyno, uint n_ranges, uint keys, uint *bufsz, uint *flags, Cost_estimate *cost) override
Initialize multi range read and get information.
Definition: ha_innodb.cc:23816
bool primary_key_is_clustered() const override
Determines if the primary key is clustered index.
Definition: ha_innodb.cc:6719
int intrinsic_table_write_row(uchar *record)
Write Row Interface optimized for Intrinsic table.
Definition: ha_innodb.cc:9036
int start_stmt(THD *thd, thr_lock_type lock_type) override
MySQL calls this function at the start of each SQL statement inside LOCK TABLES.
Definition: ha_innodb.cc:18804
void info_low_table_stats(uint flag, const dict_table_t *ib_table, uint64_t &n_rows, ulint &stat_clustered_index_size, ulint &stat_sum_of_other_index_sizes) const
Get the table stats.
Definition: ha_innodb.cc:17794
void info_low_key(uint flag, const dict_table_t *ib_table)
Get number of records per key.
Definition: ha_innodb.cc:17705
ulong index_flags(uint idx, uint part, bool all_parts) const override
Returns the operations supported for indexes.
Definition: ha_innodb.cc:6649
int rnd_end() override
Ends a table scan.
Definition: ha_innodb.cc:11098
int update_row(const uchar *old_data, uchar *new_data) override
Updates a row given as a parameter to a new value.
Definition: ha_innodb.cc:10035
int index_end() override
Currently does nothing.
Definition: ha_innodb.cc:10345
ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key) override
Estimates the number of index records in a range.
Definition: ha_innodb.cc:16981
virtual dict_index_t * innobase_get_index(uint keynr)
Get the index for a handle.
Definition: ha_innodb.cc:10660
std::string bulk_load_generate_temporary_table_name() const override
Generates a temporary table name to be used for table duplication during bulk load.
Definition: handler0alter.cc:11194
uint max_supported_key_part_length(HA_CREATE_INFO *create_info) const override
Definition: ha_innodb.cc:7945
int get_extra_columns_and_keys(const HA_CREATE_INFO *, const List< Create_field > *, const KEY *, uint, dd::Table *dd_table) override
Add hidden columns and indexes to an InnoDB table definition.
Definition: ha_innodb.cc:15069
int multi_range_read_next(char **range_info) override
Process next multi range read.
Definition: ha_innodb.cc:23801
row_prebuilt_t * m_prebuilt
Save CPU time with prebuilt/cached data structures.
Definition: ha_innodb.h:778
bool m_mysql_has_locked
If mysql has locked with external_lock()
Definition: ha_innodb.h:810
int index_next_same(uchar *buf, const uchar *key, uint keylen) override
Reads the next row matching to the key value given as the parameter.
Definition: ha_innodb.cc:10900
void * bulk_load_begin(THD *thd, size_t keynr, size_t data_size, size_t memory, size_t num_threads) override
Begin parallel bulk data load to the table.
Definition: handler0alter.cc:11346
int rnd_next(uchar *buf) override
Reads the next row in a table scan (also used to read the FIRST row in a table scan).
Definition: ha_innodb.cc:11104
bool prepare_inplace_alter_table_impl(TABLE *altered_table, Alter_inplace_info *ha_alter_info, const Table *old_dd_tab, Table *new_dd_tab)
Implementation of prepare_inplace_alter_table()
Definition: handler0alter.cc:5439
int enable_indexes(uint mode) override
Enable indexes.
Definition: ha_innodb.cc:18350
ha_innobase(handlerton *hton, TABLE_SHARE *table_arg)
Construct ha_innobase handler.
Definition: ha_innodb.cc:2974
void update_thd()
Updates the user_thd field in a handle and also allocates a new InnoDB transaction handle if needed,...
Definition: ha_innodb.cc:3024
int rnd_init(bool scan) override
Initialize a table scan.
Definition: ha_innodb.cc:11077
int index_next(uchar *buf) override
Reads the next row from a cursor, which must have previously been positioned using index_read.
Definition: ha_innodb.cc:10889
INNOBASE_SHARE * m_share
information for MySQL table locking
Definition: ha_innodb.h:785
int parallel_scan(void *scan_ctx, void **thread_ctxs, Reader::Init_fn init_fn, Reader::Load_fn load_fn, Reader::End_fn end_fn) override
Start parallel read of InnoDB records.
Definition: handler0alter.cc:1534
int bulk_load_end(THD *thd, void *load_ctx, bool is_error) override
End bulk load operation.
Definition: handler0alter.cc:11457
ulint m_stored_select_lock_type
this field is used to remember the original select_lock_type that was decided in ha_innodb....
Definition: ha_innodb.h:807
dberr_t innobase_set_max_autoinc(ulonglong auto_inc)
Store the autoinc value in the table.
Definition: ha_innodb.cc:9017
virtual bool can_reuse_mysql_template() const
Can reuse the template.
Definition: ha_innodb.h:772
void position(const uchar *record) override
Store a reference to the current row to 'ref' field of the handle.
Definition: ha_innodb.cc:11519
int multi_range_read_init(RANGE_SEQ_IF *seq, void *seq_init_param, uint n_ranges, uint mode, HANDLER_BUFFER *buf) override
Initialize multi range read.
Definition: ha_innodb.cc:23793
void unlock_row() override
Removes a new lock set on a row, if it was not read optimistically.
Definition: ha_innodb.cc:10265
bool commit_inplace_alter_table_impl(TABLE *altered_table, Alter_inplace_info *ha_alter_info, bool commit, Table *new_dd_tab)
Implementation of commit_inplace_alter_table()
Definition: handler0alter.cc:7435
bool m_start_of_scan
this is set to 1 when we are starting a table scan but have not yet fetched any row,...
Definition: ha_innodb.h:798
int rename_table(const char *from, const char *to, const dd::Table *from_table, dd::Table *to_table) override
Renames an InnoDB table.
Definition: ha_innodb.cc:16852
void position(uchar *record)
bool was_semi_consistent_read() override
Definition: ha_innodb.cc:10313
int close(void) override
Closes a handle to an InnoDB table.
Definition: ha_innodb.cc:7962
int srv_concurrency_enter()
Enter InnoDB engine after checking max allowed threads.
Definition: ha_innodb.cc:2961
int end_stmt()
MySQL calls this method at the end of each statement.
Definition: ha_innodb.cc:18748
bool get_se_private_data(dd::Table *dd_table, bool reset) override
Get storage-engine private data for a data dictionary table.
Definition: ha_innodb.cc:15304
bool is_index_algorithm_supported(enum ha_key_alg key_alg) const override
Check if SE supports specific key algorithm.
Definition: ha_innodb.h:108
ha_rows estimate_rows_upper_bound() override
Gives an UPPER BOUND to the number of rows in a table.
Definition: ha_innodb.cc:17101
void ft_end()
Definition: ha_innodb.cc:11504
bool get_error_message(int error, String *buf) override
See comment in handler.cc.
Definition: ha_innodb.cc:20127
int open(const char *name, int, uint open_flags, const dd::Table *table_def) override
Open an InnoDB table.
Definition: ha_innodb.cc:7459
uint max_supported_key_length() const override
Returns the maximum key length.
Definition: ha_innodb.cc:6693
longlong get_memory_buffer_size() const override
Return the size of the InnoDB memory buffer.
Definition: ha_innodb.cc:17212
int change_active_index(uint keynr)
Changes the active index of a handle.
Definition: ha_innodb.cc:10704
int records(ha_rows *num_rows) override
Returns the exact number of records that this client can see using this handler object.
Definition: ha_innodb.cc:16890
THR_LOCK_DATA ** store_lock(THD *thd, THR_LOCK_DATA **to, thr_lock_type lock_type) override
Supposed to convert a MySQL table lock stored in the 'lock' field of the handle to a proper type befo...
Definition: ha_innodb.cc:19772
uint lock_count(void) const override
Returns number of THR_LOCK locks used for one instance of InnoDB table.
Definition: ha_innodb.cc:19756
bool check_if_incompatible_data(HA_CREATE_INFO *info, uint table_changes) override
Part of old, deprecated in-place ALTER API.
Definition: ha_innodb.cc:20533
dberr_t innobase_get_autoinc(ulonglong *value)
Read the next autoinc value.
Definition: ha_innodb.cc:19950
void reset_template()
Resets a query execution 'template'.
Definition: ha_innodb.cc:3174
ulint m_upd_buf_size
the size of upd_buf in bytes
Definition: ha_innodb.h:791
void get_auto_increment(ulonglong offset, ulonglong increment, ulonglong nb_desired_values, ulonglong *first_value, ulonglong *nb_reserved_values) override
Returns the value of the auto-inc counter in *first_value and ~0 on failure.
Definition: ha_innodb.cc:19988
size_t bulk_load_available_memory(THD *thd) const override
Get the total memory available for bulk load in innodb buffer pool.
Definition: handler0alter.cc:11219
int info(uint) override
Returns statistics information of the table to the MySQL interpreter, in various fields of the handle...
Definition: ha_innodb.cc:17811
int delete_table(const char *name, const dd::Table *table_def) override
Drop a table.
Definition: ha_innodb.cc:15615
FT_INFO * ft_init_ext(uint flags, uint inx, String *key) override
Initialize FT index scan.
Definition: ha_innodb.cc:11184
uint max_supported_keys() const override
Returns the maximum number of keys.
Definition: ha_innodb.cc:6688
int external_lock(THD *thd, int lock_type) override
As MySQL will execute an external lock for every new table it uses when it starts to process an SQL s...
Definition: ha_innodb.cc:18948
int cmp_ref(const uchar *ref1, const uchar *ref2) const override
Compares two 'refs'.
Definition: ha_innodb.cc:20195
int write_blob(THD *thd, void *load_ctx, size_t thread_idx, Blob_context blob_ctx, unsigned char *blobref, const unsigned char *data, size_t data_len) override
Write to a blob.
Definition: handler0alter.cc:11436
int analyze(THD *thd, HA_CHECK_OPT *check_opt) override
Updates index cardinalities of the table, based on random dives into each index tree.
Definition: ha_innodb.cc:18404
int index_first(uchar *buf) override
Positions a cursor on the first record in an index and reads the corresponding row to buf.
Definition: ha_innodb.cc:10925
bool inplace_alter_table_impl(TABLE *altered_table, Alter_inplace_info *ha_alter_info)
Implementation of inplace_alter_table()
Definition: handler0alter.cc:6135
int ft_read(uchar *buf) override
Fetch next result from the FT result set.
Definition: ha_innodb.cc:11368
bool upgrade_table(THD *thd, const char *db_name, const char *table_name, dd::Table *dd_table) override
Set Engine specific data to dd::Table object for upgrade.
Definition: ha_innodb.cc:15287
void init_table_handle_for_HANDLER() override
Call this when you have opened a new table handle in HANDLER, before you call index_read_map() etc.
Definition: ha_innodb.cc:3204
int index_last(uchar *buf) override
Positions a cursor on the last record in an index and reads the corresponding row to buf.
Definition: ha_innodb.cc:10946
int bulk_load_copy_existing_data(void *load_ctx, size_t thread_idx, Bulk_load::Stat_callbacks &wait_cbk) const override
Used during bulk load on a non-empty table, called after the CSV file input is exhausted and we need ...
Definition: handler0alter.cc:11175
int truncate_impl(const char *name, TABLE *form, dd::Table *table_def)
TRUNCATE an InnoDB table.
Definition: ha_innodb.cc:15541
int sample_end(void *scan_ctx) override
End sampling.
Definition: ha_innodb.cc:11057
int index_init(uint index, bool sorted) override
Initializes a handle to use an index.
Definition: ha_innodb.cc:10332
int read_range_next() override
Read next row between two endpoints.
Definition: ha_innodb.cc:11071
Table_flags m_int_table_flags
Flags that specify the handler instance (table) capability.
Definition: ha_innodb.h:794
int close_blob(THD *thd, void *load_ctx, size_t thread_idx, Blob_context blob_ctx, byte *blobref) override
Close the blob.
Definition: handler0alter.cc:11447
int index_read_last(uchar *buf, const uchar *key, uint key_len) override
The following functions works like index_read, but it find the last row with the current key value or...
Definition: ha_innodb.cc:10647
void try_semi_consistent_read(bool yes) override
Tell the engine whether it should avoid unnecessary lock waits.
Definition: ha_innodb.cc:10319
dberr_t innobase_lock_autoinc()
This special handling is really to overcome the limitations of MySQL's binlogging.
Definition: ha_innodb.cc:8951
row_type get_real_row_type(const HA_CREATE_INFO *create_info) const override
Get real row type for the table created based on one specified by user, CREATE TABLE options and SE c...
Definition: ha_innodb.cc:6560
FT_INFO * ft_init_ext_with_hints(uint inx, String *key, Ft_hints *hints) override
Initialize FT index scan.
Definition: ha_innodb.cc:11312
ha_rows multi_range_read_info_const(uint keyno, RANGE_SEQ_IF *seq, void *seq_init_param, uint n_ranges, uint *bufsz, uint *flags, bool *force_default_mrr, Cost_estimate *cost) override
Initialize multi range read and get information.
Definition: ha_innodb.cc:23805
int index_read(uchar *buf, const uchar *key, uint key_len, ha_rkey_function find_flag) override
Positions an index cursor to the index specified in the handle.
Definition: ha_innodb.cc:10455
bool bulk_load_get_row_id_range(size_t &min, size_t &max) const override
Get the row ID range of the table that we're bulk loading into.
Definition: handler0alter.cc:11225
void parallel_scan_end(void *scan_ctx) override
End of the parallel scan.
Definition: handler0alter.cc:1557
void update_create_info(HA_CREATE_INFO *create_info) override
Update create_info.
Definition: ha_innodb.cc:13141
void release_auto_increment() override
Do cleanup for auto increment calculation.
Definition: ha_innodb.cc:19971
int check_foreign_constraints(THD *thd, size_t n_threads) const override
Check the table for any foreign key constraint violations.
Definition: ha0check.cc:88
int index_prev(uchar *buf) override
Reads the previous row from a cursor, which must have previously been positioned using index_read.
Definition: ha_innodb.cc:10913
int write_row(uchar *buf) override
Stores a row in an InnoDB database, to the table specified in this handle.
Definition: ha_innodb.cc:9281
enum ha_key_alg get_default_index_algorithm() const override
Get default key algorithm for SE.
Definition: ha_innodb.h:103
int check(THD *thd, HA_CHECK_OPT *check_opt) override
Tries to check that an InnoDB table is not corrupted.
Definition: ha_innodb.cc:18453
bool bulk_load_set_source_table_data(void *load_ctx, const std::vector< Bulk_load::Source_table_data > &source_table_data) const override
Sets the source table data (table name and key range boundaries) for all loaders.
Definition: handler0alter.cc:11207
int read_range_first(const key_range *start_key, const key_range *end_key, bool eq_range_arg, bool sorted) override
Read first row between two ranges.
Definition: ha_innodb.cc:11065
int delete_all_rows() override
Delete all rows from the table.
Definition: ha_innodb.cc:10246
bool bulk_load_check(THD *thd) const override
Check if the table is ready for bulk load.
Definition: handler0alter.cc:11144
int bulk_load_execute(THD *thd, void *load_ctx, size_t thread_idx, const Rows_mysql &rows, Bulk_load::Stat_callbacks &wait_cbk) override
Execute bulk load operation.
Definition: handler0alter.cc:11402
virtual int info_low(uint flag, bool is_analyze)
Returns statistics information of the table to the MySQL interpreter, in various fields of the handle...
Definition: ha_innodb.cc:17494
int sample_next(void *scan_ctx, uchar *buf) override
Get the next record for sampling.
Definition: ha_innodb.cc:11040
const char * table_type() const override
Returns the table type (storage engine name).
Definition: ha_innodb.cc:6644
double read_time(uint index, uint ranges, ha_rows rows) override
Calculate the time it takes to read a set of ranges through an index This enables us to optimise read...
Definition: ha_innodb.cc:17182
int optimize(THD *thd, HA_CHECK_OPT *check_opt) override
This is mapped to "ALTER TABLE tablename ENGINE=InnoDB", which rebuilds the table in MySQL.
Definition: ha_innodb.cc:18422
bool get_foreign_dup_key(char *, uint, char *, uint) override
Retrieves the names of the table and the key for which there was a duplicate entry in the case of HA_...
Definition: ha_innodb.cc:20151
~ha_innobase() override=default
int delete_row(const uchar *buf) override
Deletes a row given as the parameter.
Definition: ha_innodb.cc:10193
The handler class is the interface for dynamically loadable storage engines.
Definition: handler.h:4753
void * Blob_context
Definition: handler.h:4758
ulonglong Table_flags
Definition: handler.h:4757
Class of basic DDL implementation, for CREATE/DROP/RENAME TABLE.
Definition: ha_innodb.h:1181
static int rename_impl(THD *thd, const char *from, const char *to, const Table *from_table, const Table *to_table, const TABLE *td)
Renames an InnoDB table.
Definition: ha_innodb.cc:14611
static int create_impl(THD *thd, const char *name, TABLE *form, HA_CREATE_INFO *create_info, Table *dd_tab, bool file_per_table, bool evictable, bool skip_strict, uint32_t old_flags, uint32_t old_flags2, const dd::Table *old_dd_table)
Create an InnoDB table.
Definition: ha_innodb.cc:14387
static int delete_impl(THD *thd, const char *name, const Table *dd_tab, const TABLE *td)
Drop an InnoDB table.
Definition: ha_innodb.cc:14502
Class to handle TRUNCATE for one InnoDB table or one partition.
Definition: ha_innodb.h:1244
dict_table_t * m_table
InnoDB table object for the table/partition.
Definition: ha_innodb.h:1314
trx_t * m_trx
Transaction attached to current thd.
Definition: ha_innodb.h:1311
int open_table(dict_table_t *&innodb_table)
Open the table/partition to be truncated.
Definition: ha_innodb.cc:14742
bool m_keep_autoinc
True if the original autoinc counter should be kept.
Definition: ha_innodb.h:1328
Table * m_dd_table
dd::Table or dd::Partition
Definition: ha_innodb.h:1308
int truncate()
Do the real truncation.
Definition: ha_innodb.cc:14840
uint32_t m_flags2
flags2 of the table to be truncated, which should not change
Definition: ha_innodb.h:1338
TABLE * m_form
Table format.
Definition: ha_innodb.h:1317
HA_CREATE_INFO m_create_info
Create information.
Definition: ha_innodb.h:1320
int rename_tablespace()
Rename tablespace file name.
Definition: ha_innodb.cc:14935
bool m_file_per_table
True if this table/partition is file per table.
Definition: ha_innodb.h:1323
int load_fk()
Reload the FK related information.
Definition: ha_innodb.cc:14999
int prepare()
Prepare for truncate.
Definition: ha_innodb.cc:14773
int exec()
Do the truncate of the table/partition.
Definition: ha_innodb.cc:15030
innobase_truncate(THD *thd, const char *name, TABLE *form, Table *dd_table, bool keep_autoinc, bool table_truncate)
Constructor.
Definition: ha_innodb.h:1253
~innobase_truncate()
Destructor.
Definition: ha_innodb.cc:14731
uint32_t m_flags
flags of the table to be truncated, which should not change
Definition: ha_innodb.h:1335
void cleanup()
Cleanup.
Definition: ha_innodb.cc:14982
bool m_table_truncate
For a prtition table, this is true if full table is truncated.
Definition: ha_innodb.h:1332
THD * m_thd
THD object.
Definition: ha_innodb.h:1302
const char * m_name
Normalized table name.
Definition: ha_innodb.h:1305
A table definition from the master.
Definition: rpl_utility.h:250
static MEM_ROOT mem_root
Definition: client_plugin.cc:114
This service provides functions for clone plugin to connect and interact with remote server's clone p...
dberr_t
Definition: db0err.h:39
@ DB_SUCCESS
Definition: db0err.h:43
constexpr uint32_t DICT_TF2_TEMPORARY
TEMPORARY; true for tables from CREATE TEMPORARY TABLE.
Definition: dict0mem.h:270
constexpr uint32_t DICT_TF2_INTRINSIC
Intrinsic table bit Intrinsic table is table created internally by MySQL modules viz.
Definition: dict0mem.h:293
static page_no_t fsp_get_extent_size_in_pages(const page_size_t &page_size)
Calculate the number of physical pages in an extent for this file.
Definition: fsp0fsp.h:356
constexpr uint64_t FSP_MAX_AUTOEXTEND_SIZE
Definition: fsp0fsp.h:181
bool commit_inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info, bool commit, const dd::Table *old_dd_tab, dd::Table *new_dd_tab) override
Commit or rollback the changes made during prepare_inplace_alter_table() and inplace_alter_table() in...
Definition: handler0alter.cc:1599
enum_alter_inplace_result check_if_supported_inplace_alter(TABLE *altered_table, Alter_inplace_info *ha_alter_info) override
Check if InnoDB supports a particular alter table in-place.
Definition: handler0alter.cc:967
bool inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info, const dd::Table *old_dd_tab, dd::Table *new_dd_tab) override
Alter the table structure in-place with operations specified using HA_ALTER_FLAGS and Alter_inplace_i...
Definition: handler0alter.cc:1563
bool prepare_inplace_alter_table(TABLE *altered_table, Alter_inplace_info *ha_alter_info, const dd::Table *old_dd_tab, dd::Table *new_dd_tab) override
Allows InnoDB to update internal structures with concurrent writes blocked (provided that check_if_su...
Definition: handler0alter.cc:1439
void my_error(int nr, myf MyFlags,...)
Fill in and print a previously registered error message.
Definition: my_error.cc:217
constexpr uint32_t FSP_FREE_ADD
This many free extents are added to the free list from above FSP_FREE_LIMIT at a time.
Definition: fsp0fsp.h:176
bool innobase_match_index_columns(const KEY *key_info, const dict_index_t *index_info)
Match index columns between MySQL and InnoDB.
Definition: ha_innodb.cc:6908
void innodb_base_col_setup_for_stored(const dict_table_t *table, const Field *field, dict_s_col_t *s_col)
Set up base columns for stored column.
Definition: ha_innodb.cc:11587
const struct _ft_vft ft_vft_result
Definition: ha_innodb.cc:626
static bool normalize_table_name(char *norm_name, const char *name)
Definition: ha_innodb.h:1413
static bool tablespace_is_shared_space(const HA_CREATE_INFO *create_info)
Check if table will be explicitly put in an existing shared general or system tablespace.
Definition: ha_innodb.h:897
rec_per_key_t innodb_rec_per_key(const dict_index_t *index, ulint i, ha_rows records)
Calculate Record Per Key value.
Definition: ha_innodb.cc:17313
static bool is_shared_tablespace(const char *tablespace_name)
Check if tablespace is shared tablespace.
Definition: ha_innodb.h:922
void innobase_discard_table(THD *thd, dict_table_t *table)
Drop the statistics for a specified table, and mark it as discard after DDL.
Definition: handler0alter.cc:709
int convert_error_code_to_mysql(dberr_t error, uint32_t flags, THD *thd)
Converts an InnoDB error code to a MySQL error code.
Definition: ha_innodb.cc:2112
const char innobase_index_reserve_name[]
"GEN_CLUST_INDEX" is the name reserved for InnoDB default system clustered index when there is no pri...
Definition: dict0mem.h:1053
void innobase_build_v_templ_callback(const TABLE *table, void *ib_table)
Callback used by MySQL server layer to initialize the table virtual columns' template.
Definition: ha_innodb.cc:7055
bool trx_is_registered_for_2pc(const trx_t *trx)
Note that a transaction has been registered with MySQL.
Definition: ha_innodb.h:1420
static int validate_autoextend_size_value(uint64_t ext_size)
Validate AUTOEXTEND_SIZE attribute for a tablespace.
Definition: ha_innodb.h:935
void innobase_parse_hint_from_comment(THD *thd, dict_table_t *table, const TABLE_SHARE *table_share)
Parse hint for table and its indexes, and update the information in dictionary.
Definition: ha_innodb.cc:13729
static bool tablespace_is_file_per_table(const HA_CREATE_INFO *create_info)
Check if the explicit tablespace targeted is file_per_table.
Definition: ha_innodb.h:886
void innodb_base_col_setup(dict_table_t *table, const Field *field, dict_v_col_t *v_col)
Set up base columns for virtual column.
Definition: ha_innodb.cc:11556
fts_doc_id_index_enum
Some defines for innobase_fts_check_doc_id_index() return value.
Definition: ha_innodb.h:1350
@ FTS_EXIST_DOC_ID_INDEX
Definition: ha_innodb.h:1352
@ FTS_INCORRECT_DOC_ID_INDEX
Definition: ha_innodb.h:1351
@ FTS_NOT_EXIST_DOC_ID_INDEX
Definition: ha_innodb.h:1353
trx_t * innobase_trx_allocate(THD *thd)
Allocates an InnoDB transaction for a MySQL handler object.
Definition: ha_innodb.cc:2787
void innobase_build_v_templ(const TABLE *table, const dict_table_t *ib_table, dict_vcol_templ_t *s_templ, const dict_add_v_col_t *add_v, bool locked, const char *share_tbl_name)
Build template for the virtual columns and their base columns.
Definition: ha_innodb.cc:7071
const mysql_service_clone_protocol_t * clone_protocol_svc
Clone protocol service.
Definition: ha_innodb.cc:289
static bool tablespace_is_general_space(const HA_CREATE_INFO *create_info)
Check if table will be explicitly put in a general tablespace.
Definition: ha_innodb.h:908
fts_doc_id_index_enum innobase_fts_check_doc_id_index(const dict_table_t *table, const TABLE *altered_table, ulint *fts_doc_col_no)
Check whether the table has a unique index with FTS_DOC_ID_INDEX_NAME on the Doc ID column.
Definition: handler0alter.cc:2852
void innobase_register_trx(handlerton *hton, THD *thd, trx_t *trx)
Allocates an InnoDB transaction for a MySQL handler object for DML.
Definition: ha_innodb.cc:3037
static bool innobase_is_s_fld(const Field *field)
whether this is a stored column
Definition: ha_innodb.h:1400
static bool innobase_is_multi_value_fld(const Field *field)
Whether this is a computed multi-value virtual column.
Definition: ha_innodb.h:1409
void innobase_copy_frm_flags_from_table_share(dict_table_t *innodb_table, const TABLE_SHARE *table_share)
Copy table flags from MySQL's TABLE_SHARE into an InnoDB table object.
Definition: ha_innodb.cc:2936
bool innobase_fts_load_stopword(dict_table_t *table, trx_t *trx, THD *thd)
Initialize the table FTS stopword list.
Definition: ha_innodb.cc:13171
void(* my_gcolumn_templatecallback_t)(const TABLE *, void *)
Callback function definition, used by MySQL server layer to initialized the table virtual columns' te...
Definition: ha_innodb.h:1473
trx_t *& thd_to_trx(THD *thd)
Obtain the InnoDB transaction of a MySQL thread.
Definition: ha_innodb.cc:2045
page_cur_mode_t convert_search_mode_to_innobase(enum ha_rkey_function find_flag)
Converts a search mode flag understood by MySQL to a flag understood by InnoDB.
Definition: ha_innodb.cc:10363
fts_doc_id_index_enum innobase_fts_check_doc_id_index_in_def(ulint n_key, const KEY *key_info)
Check whether the table has a unique index with FTS_DOC_ID_INDEX_NAME on the Doc ID column in MySQL c...
Definition: handler0alter.cc:2938
struct new_ft_info NEW_FT_INFO
Structure Returned by ha_innobase::ft_init_ext()
trx_t::isolation_level_t innobase_trx_map_isolation_level(enum_tx_isolation iso)
Maps a MySQL trx isolation level code to the InnoDB isolation level code.
Definition: ha_innodb.cc:18915
bool innobase_index_name_is_reserved(THD *thd, const KEY *key_info, ulint num_of_keys)
This function checks each index name for a table against reserved system default primary index name '...
Definition: ha_innodb.cc:21797
constexpr uint32_t SIZE_MB
Definition: ha_innodb.h:930
bool innobase_stats_on_metadata
Definition: ha_innodb.cc:362
ulong thd_parallel_read_threads(THD *thd)
Return the number of read threads for this session.
Definition: ha_innodb.cc:2052
Atomic_sysvar< ulong > innodb_autoinc_preallocate
A sysvar which controls how much can we round up the autoinc value when persisting it to DDTableBuffe...
static int flags[50]
Definition: hp_test1.cc:40
static int flag
Definition: hp_test1.cc:40
static uint keys
Definition: hp_test2.cc:49
float rec_per_key_t
Data type for records per key estimates that are stored in the KEY::rec_per_key_float[] array.
Definition: key.h:96
ha_key_alg
Definition: my_base.h:98
@ HA_KEY_ALG_RTREE
Definition: my_base.h:109
@ HA_KEY_ALG_BTREE
Definition: my_base.h:108
@ HA_KEY_ALG_FULLTEXT
Definition: my_base.h:111
ha_rkey_function
Definition: my_base.h:78
my_off_t ha_rows
Definition: my_base.h:1228
ha_extra_function
Definition: my_base.h:185
unsigned long long int ulonglong
Definition: my_inttypes.h:56
unsigned char uchar
Definition: my_inttypes.h:52
long long int longlong
Definition: my_inttypes.h:55
#define MYF(v)
Definition: my_inttypes.h:97
enum_sql_command
Definition: my_sqlcommand.h:46
void error(const char *format,...)
static bool ignore
Definition: mysqlimport.cc:70
static int record
Definition: mysqltest.cc:195
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
The version of the current data dictionary table definitions.
Definition: dictionary_client.h:44
bool is_partition(const std::string &dict_name)
Check if it is a table partition.
Definition: dict0dd.cc:7285
bool index(const std::string &value, const String &search_for, uint32_t *idx)
Definition: contains.h:76
Definition: aligned_atomic.h:44
entry::Table Table
Definition: select.h:51
ValueType value(const std::optional< ValueType > &v)
Definition: gtid.h:83
ValueType max(X &&first)
Definition: gtid.h:103
const char * table_name
Definition: rules_table_service.cc:56
const char * db_name
Definition: rules_table_service.cc:55
mode
Definition: file_handle.h:61
page_cur_mode_t
Definition: page0types.h:176
required string key
Definition: replication_asynchronous_connection_failover.proto:60
Parallel read adapter interface.
Parallel read histogram interface.
#define SERVICE_TYPE(name)
Generates the standard Service type name.
Definition: service.h:76
enum_alter_inplace_result
Return values for check_if_supported_inplace_alter().
Definition: handler.h:207
enum_tx_isolation
Definition: handler.h:3340
row_type
Definition: handler.h:692
enum_sampling_method
Definition: handler.h:723
static bool commit(THD *thd)
Commit the current statement and transaction.
Definition: sql_cmd_srs.cc:152
case opt name
Definition: sslopt-case.h:29
TempTable public handler API declaration.
Callbacks for collecting time statistics.
Definition: bulk_data_service.h:931
Definition: ft_global.h:72
Definition: handler.h:3979
Definition: handler.h:3966
Struct to hold information about the table that should be created.
Definition: handler.h:3356
const char * tablespace
Definition: handler.h:3362
InnoDB table share.
Definition: ha_innodb.h:72
const char * table_name
InnoDB table name.
Definition: ha_innodb.h:73
innodb_idx_translate_t idx_trans_tbl
index translation table between MySQL and InnoDB
Definition: ha_innodb.h:80
void * table_name_hash
hash table chain node
Definition: ha_innodb.h:78
uint use_count
reference count, incremented in get_share() and decremented in free_share()
Definition: ha_innodb.h:74
The MEM_ROOT is a simple arena, where allocations are carved out of larger blocks.
Definition: my_alloc.h:83
Definition: handler.h:3987
This structure is shared between different table objects.
Definition: table.h:731
Definition: table.h:1456
Definition: thr_lock.h:124
Definition: ft_global.h:57
Definition: ft_global.h:48
Data structure for newly added virtual column in a table.
Definition: dict0mem.h:831
Data structure for an index.
Definition: dict0mem.h:1069
Data structure for a stored column in a table.
Definition: dict0mem.h:843
static const char * s_file_per_table_name
The hard-coded tablespace name innodb_file_per_table.
Definition: dict0dict.h:1160
static const char * s_sys_space_name
The name of the hard-coded system tablespace.
Definition: dict0dict.h:1151
static const char * s_temp_space_name
The name of the predefined temporary tablespace.
Definition: dict0dict.h:1154
Data structure for a database table.
Definition: dict0mem.h:1927
Data structure for a virtual column in a table.
Definition: dict0mem.h:811
Structure defines template related to virtual columns and their base columns.
Definition: dict0mem.h:1864
Query result.
Definition: fts0fts.h:314
handlerton is a singleton structure - one instance per storage engine - to provide access to storage ...
Definition: handler.h:2852
Definition: ha_innodb.h:60
dict_index_t ** index_mapping
index pointer array directly maps to index in InnoDB from MySQL array index
Definition: ha_innodb.h:66
ulint array_size
array size of index_mapping
Definition: ha_innodb.h:64
ulint index_count
number of valid index entries in the index_mapping array
Definition: ha_innodb.h:61
Definition: my_base.h:1212
Structure Returned by ha_innobase::ft_init_ext()
Definition: ha_innodb.h:838
struct _ft_vft_ext * could_you
Definition: ha_innodb.h:840
row_prebuilt_t * ft_prebuilt
Definition: ha_innodb.h:841
fts_result_t * ft_result
Definition: ha_innodb.h:842
struct _ft_vft * please
Definition: ha_innodb.h:839
A struct for (sometimes lazily) prebuilt structures in an Innobase table handle used within MySQL; th...
Definition: row0mysql.h:515
Definition: trx0trx.h:670
bool is_registered
Definition: trx0trx.h:864
isolation_level_t
Definition: trx0trx.h:671
thr_lock_type
Definition: thr_lock.h:51
The transaction.
ulong srv_page_size
Definition: srv0srv.cc:389
unsigned long int ulint
Definition: univ.i:403
#define ut_ad(EXPR)
Debug assertion.
Definition: ut0dbg.h:109