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/r/innodb-ucs2.result | |
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/r/innodb-ucs2.result')
-rw-r--r-- | mysql-test/r/innodb-ucs2.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/innodb-ucs2.result b/mysql-test/r/innodb-ucs2.result index a1c73c912b2..b6bff7d5f42 100644 --- a/mysql-test/r/innodb-ucs2.result +++ b/mysql-test/r/innodb-ucs2.result @@ -1,3 +1,4 @@ +drop table if exists t1, t2; create table t1 ( a int, b char(10), c char(10), filler char(10), primary key(a, b(2)), unique key (a, c(2)) ) character set utf8 engine = innodb; |