mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +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.
10 lines
466 B
Text
10 lines
466 B
Text
call mtr.add_suppression("InnoDB: Table `test`.`t1` has an unreadable root page");
|
|
CREATE TABLE t1 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT, c char(200))
|
|
ENGINE=InnoDB PAGE_COMPRESSED=YES STATS_PERSISTENT=0;
|
|
insert into t1(b, c) values("mariadb", "mariabackup");
|
|
InnoDB 0 transactions not purged
|
|
# Corrupt the table
|
|
# restart: --skip-innodb-buffer-pool-load-at-startup
|
|
# xtrabackup backup
|
|
FOUND 1 /Database page corruption detected.*/ in backup.log
|
|
drop table t1;
|