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.
27 lines
875 B
Text
27 lines
875 B
Text
CREATE TABLE t1(f1 int auto_increment primary key,
|
|
f2 varchar(256),
|
|
f3 text) engine = innodb stats_persistent=0;
|
|
FLUSH TABLE t1 FOR EXPORT;
|
|
UNLOCK TABLES;
|
|
FOUND 500500 /unicycle|repairman/ in t1.ibd
|
|
DELETE FROM t1;
|
|
InnoDB 0 transactions not purged
|
|
FLUSH TABLE t1 FOR EXPORT;
|
|
UNLOCK TABLES;
|
|
NOT FOUND /unicycle|repairman/ in t1.ibd
|
|
DROP TABLE t1;
|
|
#
|
|
# MDEV-30527 Assertion !m_freed_pages in mtr_t::start()
|
|
# on DROP TEMPORARY TABLE
|
|
#
|
|
SET @scrub= @@GLOBAL.innodb_immediate_scrub_data_uncompressed;
|
|
SET GLOBAL innodb_immediate_scrub_data_uncompressed= 1;
|
|
SET @fpt=@@GLOBAL.innodb_file_per_table;
|
|
SET GLOBAL innodb_file_per_table=0;
|
|
CREATE TABLE t ENGINE=InnoDB AS SELECT 1;
|
|
DROP TABLE t;
|
|
SET GLOBAL innodb_file_per_table=@fpt;
|
|
CREATE TEMPORARY TABLE tmp ENGINE=InnoDB AS SELECT 1;
|
|
DROP TABLE tmp;
|
|
SET GLOBAL INNODB_IMMEDIATE_SCRUB_DATA_UNCOMPRESSED= @scrub;
|
|
# End of 10.6 tests
|