mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Bug#32754 - InnoDB tests do not prepare or clean up correctly
Some test cases were missing preparation to deal with failed predecessor test cases. Added preparation (drop table if exists) to some test cases. mysql-test/include/innodb_rollback_on_timeout.inc: Bug#32754 - InnoDB tests do not prepare or clean up correctly Added preparation (drop table if exists). mysql-test/r/innodb-semi-consistent.result: Bug#32754 - InnoDB tests do not prepare or clean up correctly Fixed test result. mysql-test/r/innodb-ucs2.result: Bug#32754 - InnoDB tests do not prepare or clean up correctly Fixed test result. mysql-test/r/innodb_mysql.result: Bug#32754 - InnoDB tests do not prepare or clean up correctly Fixed test result. mysql-test/r/innodb_timeout_rollback.result: Bug#32754 - InnoDB tests do not prepare or clean up correctly Fixed test result. mysql-test/t/innodb-semi-consistent.test: Bug#32754 - InnoDB tests do not prepare or clean up correctly Added preparation (drop table if exists). mysql-test/t/innodb-ucs2.test: Bug#32754 - InnoDB tests do not prepare or clean up correctly Added preparation (drop table if exists).
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
# Bug #24200: Provide backwards compatibility mode for 4.x "rollback on
|
||||
# transaction timeout"
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists t1;
|
||||
--enable_warnings
|
||||
|
||||
show variables like 'innodb_rollback_on_timeout';
|
||||
create table t1 (a int unsigned not null primary key) engine = innodb;
|
||||
insert into t1 values (1);
|
||||
|
Reference in New Issue
Block a user