mariadb/storage/innobase/btr
Marko Mäkelä 0f90728bc0 MDEV-16809 Allow full redo logging for ALTER TABLE
Introduce the configuration option innodb_log_optimize_ddl
for controlling whether native index creation or table-rebuild
in InnoDB should keep optimizing the redo log
(and writing MLOG_INDEX_LOAD records to ensure that
concurrent backup would fail).

By default, we have innodb_log_optimize_ddl=ON, that is,
the default behaviour that was introduced in MariaDB 10.2.2
(with the merge of InnoDB from MySQL 5.7) will be unchanged.

BtrBulk::m_trx: Replaces m_trx_id. We must be able to check for
KILL QUERY even if !m_flush_observer (innodb_log_optimize_ddl=OFF).

page_cur_insert_rec_write_log(): Declare globally, so that this
can be called from PageBulk::insert().

row_merge_insert_index_tuples(): Remove the unused parameter trx_id.

row_merge_build_indexes(): Enable or disable redo logging based on
the innodb_log_optimize_ddl parameter.

PageBulk::init(), PageBulk::insert(), PageBulk::finish(): Write
redo log records if needed. For ROW_FORMAT=COMPRESSED, redo log
will be written in PageBulk::compress() unless we called
m_mtr.set_log_mode(MTR_LOG_NO_REDO).
2018-07-26 08:44:42 +03:00
..
btr0btr.cc Remove a bogus page_is_root() debug assertion on btr_create() failure 2017-10-27 19:01:24 +03:00
btr0bulk.cc MDEV-16809 Allow full redo logging for ALTER TABLE 2018-07-26 08:44:42 +03:00
btr0cur.cc MDEV-14407 Assertion failure during rollback 2018-02-08 13:55:57 +02:00
btr0defragment.cc Pretty-print table names in some error messages 2018-06-27 23:22:08 +03:00
btr0pcur.cc Merge branch 'github/10.0' into 10.1 2018-02-02 10:09:44 +01:00
btr0scrub.cc Merge 10.1 into 10.2 2017-08-31 11:14:28 +03:00
btr0sea.cc Reduce the number of rw_lock_own() calls 2018-07-23 17:49:01 +03:00