mariadb/mysql-test/suite
Marko Mäkelä 8777458a6e MDEV-6076 Persistent AUTO_INCREMENT for InnoDB
This should be functionally equivalent to WL#6204 in MySQL 8.0.0, with
the notable difference that the file format changes are limited to
repurposing a previously unused data field in B-tree pages.

For persistent InnoDB tables, write the last used AUTO_INCREMENT
value to the root page of the clustered index, in the previously
unused (0) PAGE_MAX_TRX_ID field, now aliased as PAGE_ROOT_AUTO_INC.
Unlike some other previously unused InnoDB data fields, this one was
actually always zero-initialized, at least since MySQL 3.23.49.

The writes to PAGE_ROOT_AUTO_INC are protected by SX or X latch on the
root page. The SX latch will allow concurrent read access to the root
page. (The field PAGE_ROOT_AUTO_INC will only be read on the
first-time call to ha_innobase::open() from the SQL layer. The
PAGE_ROOT_AUTO_INC can only be updated when executing SQL, so
read/write races are not possible.)

During INSERT, the PAGE_ROOT_AUTO_INC is updated by the low-level
function btr_cur_search_to_nth_level(), adding no extra page
access. [Adaptive hash index lookup will be disabled during INSERT.]

If some rare UPDATE modifies an AUTO_INCREMENT column, the
PAGE_ROOT_AUTO_INC will be adjusted in a separate mini-transaction in
ha_innobase::update_row().

When a page is reorganized, we have to preserve the PAGE_ROOT_AUTO_INC
field.

During ALTER TABLE, the initial AUTO_INCREMENT value will be copied
from the table. ALGORITHM=COPY and online log apply in LOCK=NONE will
update PAGE_ROOT_AUTO_INC in real time.

innodb_col_no(): Determine the dict_table_t::cols[] element index
corresponding to a Field of a non-virtual column.
(The MySQL 5.7 implementation of virtual columns breaks the 1:1
relationship between Field::field_index and dict_table_t::cols[].
Virtual columns are omitted from dict_table_t::cols[]. Therefore,
we must translate the field_index of AUTO_INCREMENT columns into
an index of dict_table_t::cols[].)

Upgrade from old data files:

By default, the AUTO_INCREMENT sequence in old data files would appear
to be reset, because PAGE_MAX_TRX_ID or PAGE_ROOT_AUTO_INC would contain
the value 0 in each clustered index page. In new data files,
PAGE_ROOT_AUTO_INC can only be 0 if the table is empty or does not contain
any AUTO_INCREMENT column.

For backward compatibility, we use the old method of
SELECT MAX(auto_increment_column) for initializing the sequence.

btr_read_autoinc(): Read the AUTO_INCREMENT sequence from a new-format
data file.

btr_read_autoinc_with_fallback(): A variant of btr_read_autoinc()
that will resort to reading MAX(auto_increment_column) for data files
that did not use AUTO_INCREMENT yet. It was manually tested that during
the execution of innodb.autoinc_persist the compatibility logic is
not activated (for new files, PAGE_ROOT_AUTO_INC is never 0 in nonempty
clustered index root pages).

initialize_auto_increment(): Replaces
ha_innobase::innobase_initialize_autoinc(). This initializes
the AUTO_INCREMENT metadata. Only called from ha_innobase::open().

ha_innobase::info_low(): Do not try to lazily initialize
dict_table_t::autoinc. It must already have been initialized by
ha_innobase::open() or ha_innobase::create().

Note: The adjustments to class ha_innopart were not tested, because
the source code (native InnoDB partitioning) is not being compiled.
2016-12-16 09:19:19 +02:00
..
archive cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
binlog MDEV-11360 Dynamic SQL: DEFAULT as a bind parameter 2016-11-27 18:21:18 +04:00
csv MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
encryption cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
engines Follow-up for a411d7f4f6 - change in formatting of SHOW CREATE TABLE 2016-12-15 02:35:31 +02:00
federated bugfix: multi-UPDATE, vcols, const tables 2016-12-12 20:27:38 +01:00
funcs_1 buildbot issues 2016-12-13 21:42:30 +01:00
funcs_2
galera cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
galera_3nodes Fix/disable some failing galera tests. 2016-11-07 11:53:59 -05:00
gcol Item_func_like: print a not like b instead of !(a like b) 2016-12-12 20:44:45 +01:00
handler MDEV-7660 - MySQL WL#6671 "Improve scalability by not using thr_lock.c locks 2016-11-03 16:35:15 +04:00
heap
innodb MDEV-6076 Persistent AUTO_INCREMENT for InnoDB 2016-12-16 09:19:19 +02:00
innodb_fts Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
innodb_gis Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
innodb_zip cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
jp
large_tests
maria Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
mtr/t
mtr2
multi_source MDEV-7145: Delayed replication 2016-10-16 23:44:44 +02:00
ndb
optimizer_unfixed_bugs Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
parts MDEV-6076 Persistent AUTO_INCREMENT for InnoDB 2016-12-16 09:19:19 +02:00
percona MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
perfschema MDEV-5800 InnoDB support for indexed vcols 2016-12-12 20:27:42 +01:00
perfschema_stress
plugins Merge branch '10.2' into bb-10.2-connector-c-integ-subm 2016-09-21 12:54:56 +02:00
roles Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
rpl Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
storage_engine cleanup: remove Item::intro_version 2016-12-12 20:27:25 +01:00
stress MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sys_vars store/show vcols as item->print() 2016-12-12 20:35:41 +01:00
unit better identify C/C unit tests in mysql-test 2016-09-12 17:51:50 +02:00
vcol MDEV-11518 Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' failed in Field_long::val_int() 2016-12-12 20:44:46 +01:00
wsrep Merge branch '10.1' into 10.2 2016-09-09 08:33:08 +02:00