summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb-semi-consistent.result
diff options
context:
space:
mode:
authorunknown <istruewing@stella.local>2007-11-27 09:25:45 +0100
committerunknown <istruewing@stella.local>2007-11-27 09:25:45 +0100
commit8784957e14fee127c0b8ca094031f2b74e55e359 (patch)
treeab32de11c88b7520922d7c20f574b08b6cfafebc /mysql-test/r/innodb-semi-consistent.result
parent58316f2964e1ac3ad1ca02e0eb1b9e5885bdbe8b (diff)
downloadmariadb-git-8784957e14fee127c0b8ca094031f2b74e55e359.tar.gz
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).
Diffstat (limited to 'mysql-test/r/innodb-semi-consistent.result')
-rw-r--r--mysql-test/r/innodb-semi-consistent.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/innodb-semi-consistent.result b/mysql-test/r/innodb-semi-consistent.result
index ad7b70d0497..f1139390f20 100644
--- a/mysql-test/r/innodb-semi-consistent.result
+++ b/mysql-test/r/innodb-semi-consistent.result
@@ -1,3 +1,4 @@
+drop table if exists t1;
set session transaction isolation level read committed;
create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
insert into t1 values (1),(2),(3),(4),(5),(6),(7);