mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
4c16ec3e77
In any test that uses wait_all_purged.inc, ensure that InnoDB tables
will be created without persistent statistics.
This is a follow-up to commit cd04673a17
after a similar failure was observed in the innodb_zip.blob test.
8 lines
381 B
Text
8 lines
381 B
Text
# Set the environmental variables
|
|
create table t1(f1 int not null)engine=innodb stats_persistent=0;
|
|
insert into t1 values(1), (2), (3);
|
|
# Change the page offset
|
|
FOUND 1 /page id mismatch/ in result.log
|
|
InnoDB 0 transactions not purged
|
|
drop table t1;
|
|
call mtr.add_suppression("InnoDB: Failed to read page 3 from file '.*test/t1\\.ibd': Page read from tablespace is corrupted\\.");
|