polardbxengine/mysql-test/suite/innodb/t/sdi_fail.test

26 lines
649 B
Plaintext

--source include/have_debug.inc
--echo #
--echo # Bug #27493634 FAILURE DURING SDI DELETION CAUSES ASSERT
--echo #
--disable_query_log
call mtr.add_suppression("sdi_delete failed: tablespace_id:");
call mtr.add_suppression("Cannot save table statistics for table");
call mtr.add_suppression("Could not allocate transaction undo log");
--enable_query_log
create table t1(c1 int primary key, c2 char(1), c3 int unsigned);
show create table t1;
SET DEBUG='+d,ib_create_table_fail_too_many_trx';
--error ER_TOO_MANY_CONCURRENT_TRXS
ALTER TABLE t1 ADD INDEX (c2), ADD INDEX (c3);
SET DEBUG='-d,ib_create_table_fail_too_many_trx';
drop table t1;