diff options
author | unknown <istruewing@stella.local> | 2007-11-27 09:25:45 +0100 |
---|---|---|
committer | unknown <istruewing@stella.local> | 2007-11-27 09:25:45 +0100 |
commit | 8784957e14fee127c0b8ca094031f2b74e55e359 (patch) | |
tree | ab32de11c88b7520922d7c20f574b08b6cfafebc /mysql-test/t/innodb-semi-consistent.test | |
parent | 58316f2964e1ac3ad1ca02e0eb1b9e5885bdbe8b (diff) | |
download | mariadb-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/t/innodb-semi-consistent.test')
-rw-r--r-- | mysql-test/t/innodb-semi-consistent.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/innodb-semi-consistent.test b/mysql-test/t/innodb-semi-consistent.test index 7a9231b508f..c33126b93ff 100644 --- a/mysql-test/t/innodb-semi-consistent.test +++ b/mysql-test/t/innodb-semi-consistent.test @@ -1,6 +1,10 @@ -- source include/not_embedded.inc -- source include/have_innodb.inc +--disable_warnings +drop table if exists t1; +--enable_warnings + # basic tests of semi-consistent reads connect (a,localhost,root,,); |