1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-30346 Avoid block device required error in innodb_fts.misc_debug

- Returns DB_LOCK_WAIT_TIMEOUT for the stats_lock_fail
debug sync point
This commit is contained in:
Thirunarayanan Balathandayuthapani
2023-01-05 11:06:35 +05:30
parent fe38d7cad4
commit 12a85c6caf
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ DROP TABLE t1;
CREATE TABLE t1(f1 INT NOT NULL, f2 CHAR(100))ENGINE=InnoDB;
SET DEBUG_DBUG="+d,stats_lock_fail";
ALTER TABLE t1 ADD FULLTEXT(f2);
ERROR HY000: Got error 15 "Block device required" from storage engine InnoDB
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
SET debug_dbug=@saved_debug_dbug;
ALTER TABLE t1 DISCARD TABLESPACE;
ALTER TABLE t1 ADD FULLTEXT(f2);