mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.3 into 10.4
Disable MDEV-20576 assertions until MDEV-20595 has been fixed.
This commit is contained in:
@ -12,4 +12,3 @@
|
||||
|
||||
innodb_scrub : MDEV-8139 scrubbing does not work reliably
|
||||
innodb_scrub_background : MDEV-8139 scrubbing does not work reliably
|
||||
innodb-redo-badkey : MDEV-13893/MDEV-12699 fix recovery of corrupted pages
|
||||
|
@ -6,7 +6,7 @@ call mtr.add_suppression("InnoDB: Unable to decompress .*.test.t1\\.ibd\\[page i
|
||||
call mtr.add_suppression("InnoDB: Database page corruption on disk or a failed file read of tablespace test/t1 page \\[page id: space=[1-9][0-9]*, page number=[0-9]*\\]");
|
||||
call mtr.add_suppression("InnoDB: Plugin initialization aborted");
|
||||
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed");
|
||||
# Restart mysqld --file-key-management-filename=keys2.txt
|
||||
# restart: --file-key-management-filename=MYSQL_TEST_DIR/std_data/keys2.txt
|
||||
# Wait max 10 min for key encryption threads to encrypt all spaces
|
||||
SET GLOBAL innodb_file_per_table = ON;
|
||||
create table t1(a int not null primary key auto_increment, c char(250), b blob, index(b(10))) engine=innodb row_format=compressed encrypted=yes encryption_key_id=4;
|
||||
@ -30,9 +30,9 @@ insert into t3 (c,b) values (repeat('secret9',20), repeat('secre10',6000));
|
||||
insert into t4 (c,b) values (repeat('secre11',20), repeat('secre12',6000));
|
||||
COMMIT;
|
||||
# Kill the server
|
||||
# restart
|
||||
# restart: --file-key-management-filename=MYSQL_TEST_DIR/std_data/keys2.txt
|
||||
# Kill the server
|
||||
# Restart mysqld --innodb-force-recovery=1
|
||||
# restart: --innodb-force-recovery=1
|
||||
# Kill the server
|
||||
# Restart mysqld --file-key-management-filename=keys2.txt
|
||||
# restart: --file-key-management-filename=MYSQL_TEST_DIR/std_data/keys2.txt
|
||||
drop table t1, t2,t3,t4;
|
||||
|
@ -12,7 +12,6 @@ call mtr.add_suppression("InnoDB: Database page corruption on disk or a failed f
|
||||
call mtr.add_suppression("InnoDB: Plugin initialization aborted");
|
||||
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed");
|
||||
|
||||
--echo # Restart mysqld --file-key-management-filename=keys2.txt
|
||||
-- let $restart_parameters=--file-key-management-filename=$MYSQL_TEST_DIR/std_data/keys2.txt
|
||||
-- source include/restart_mysqld.inc
|
||||
|
||||
@ -68,7 +67,6 @@ let $cleanup= drop table t1,t2,t3,t4;
|
||||
--let CLEANUP_IF_CHECKPOINT= $cleanup;
|
||||
--source ../../suite/innodb/include/no_checkpoint_end.inc
|
||||
|
||||
--echo # restart
|
||||
--error 1
|
||||
-- source include/start_mysqld.inc
|
||||
--source include/kill_mysqld.inc
|
||||
@ -77,14 +75,12 @@ let $cleanup= drop table t1,t2,t3,t4;
|
||||
# Now test with innodb-force-recovery=1 i.e. ignore corrupt pages
|
||||
#
|
||||
|
||||
--echo # Restart mysqld --innodb-force-recovery=1
|
||||
-- let $restart_parameters=--innodb-force-recovery=1
|
||||
--error 1
|
||||
-- source include/start_mysqld.inc
|
||||
|
||||
--source include/kill_mysqld.inc
|
||||
|
||||
--echo # Restart mysqld --file-key-management-filename=keys2.txt
|
||||
-- let $restart_parameters=--file-key-management-filename=$MYSQL_TEST_DIR/std_data/keys2.txt
|
||||
-- source include/start_mysqld.inc
|
||||
|
||||
|
Reference in New Issue
Block a user