mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@@ -58,6 +58,7 @@ DROP TABLE t1;
|
||||
#
|
||||
call mtr.add_suppression("InnoDB: \\(Too many concurrent transactions\\)");
|
||||
call mtr.add_suppression("InnoDB: Cannot save table statistics for table `test`\\.`t1`: Too many concurrent transactions");
|
||||
SET @saved_debug_dbug= @@debug_dbug;
|
||||
CREATE TABLE t1 (b CHAR(12), FULLTEXT KEY(b)) engine=InnoDB;
|
||||
SET debug_dbug='+d,ib_create_table_fail_too_many_trx';
|
||||
TRUNCATE t1;
|
||||
@@ -69,7 +70,7 @@ 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
|
||||
SET DEBUG_DBUG="-d,stats_lock_fail";
|
||||
SET debug_dbug=@saved_debug_dbug;
|
||||
ALTER TABLE t1 DISCARD TABLESPACE;
|
||||
ALTER TABLE t1 ADD FULLTEXT(f2);
|
||||
ERROR HY000: Tablespace has been discarded for table `t1`
|
||||
|
Reference in New Issue
Block a user