mirror of
https://github.com/MariaDB/server.git
synced 2025-11-12 10:22:39 +03:00
20 lines
721 B
Plaintext
20 lines
721 B
Plaintext
#
|
|
# Bug Bug #27304661 MYSQL CRASH DOING SYNC INDEX ]
|
|
# [FATAL] INNODB: SEMAPHORE WAIT HAS LASTED > 600
|
|
#
|
|
CREATE TABLE t1 (
|
|
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
|
|
f1 TEXT(500),
|
|
FULLTEXT idx (f1)
|
|
) ENGINE=InnoDB;
|
|
insert into t1 (f1) values ('fjdhfsjhf'),('dhjfhjshfj'),('dhjafjhfj');
|
|
set @save_table_definition_cache=@@global.table_definition_cache;
|
|
set @save_table_open_cache=@@global.table_open_cache;
|
|
set global table_definition_cache=400;
|
|
set global table_open_cache= 1024;
|
|
SET @save_dbug = @@GLOBAL.debug_dbug;
|
|
SET GLOBAL DEBUG_DBUG="+d,crash_if_fts_table_is_evicted";
|
|
set @@global.table_definition_cache=@save_table_definition_cache;
|
|
set @@global.table_open_cache=@save_table_open_cache;
|
|
drop table t1;
|