mirror of
https://github.com/MariaDB/server.git
synced 2025-07-21 21:22:27 +03:00
This is a merge from 10.2, but the 10.2 version of this will not be pushed into 10.2 yet, because the 10.2 version would include backports of MDEV-14717 and MDEV-14585, which would introduce a crash recovery regression: Tables could be lost on table-rebuilding DDL operations, such as ALTER TABLE, OPTIMIZE TABLE or this new backup-friendly TRUNCATE TABLE. The test innodb.truncate_crash occasionally loses the table due to the following bug: MDEV-17158 log_write_up_to() sometimes fails
16 lines
484 B
Plaintext
16 lines
484 B
Plaintext
SET GLOBAL innodb_undo_logs = 4;
|
|
SET GLOBAL innodb_undo_log_truncate = 1;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency = 1;
|
|
create table t1(keyc int primary key, c char(100)) engine = innodb;
|
|
begin;
|
|
commit;
|
|
begin;
|
|
update t1 set c = 'MariaDB';
|
|
update t1 set c = 'InnoDB';
|
|
set global debug_dbug = '+d,ib_undo_trunc';
|
|
commit;
|
|
call mtr.add_suppression("InnoDB: The redo log transaction size ");
|
|
SET GLOBAL innodb_fast_shutdown=0;
|
|
FOUND 1 /ib_undo_trunc/ in mysqld.1.err
|
|
drop table t1;
|