mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +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.
20 lines
720 B
Text
20 lines
720 B
Text
--source include/have_innodb.inc
|
|
--source include/have_partition.inc
|
|
--let $engine=InnoDB
|
|
--disable_query_log
|
|
SET @save_innodb_read_only_compressed=@@GLOBAL.innodb_read_only_compressed;
|
|
SET GLOBAL innodb_read_only_compressed=OFF;
|
|
--enable_query_log
|
|
--source inc/part_alter_values.inc
|
|
--disable_query_log
|
|
SET GLOBAL innodb_read_only_compressed=@save_innodb_read_only_compressed;
|
|
--enable_query_log
|
|
--echo #
|
|
--echo # MDEV-28079 Shutdown hangs after altering innodb partition fts table
|
|
--echo #
|
|
CREATE TABLE t1(f1 INT, f2 CHAR(100))ENGINE=InnoDB STATS_PERSISTENT=0
|
|
PARTITION BY HASH(f1) PARTITIONS 2;
|
|
ALTER TABLE t1 ADD FULLTEXT(f2);
|
|
--source ../innodb/include/wait_all_purged.inc
|
|
DROP TABLE t1;
|
|
--echo # End of 10.6 tests
|