diff options
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/check.test | 2 | ||||
-rw-r--r-- | mysql-test/t/compare.test | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/check.test b/mysql-test/t/check.test index e65a61d86da..62af9f92e65 100644 --- a/mysql-test/t/check.test +++ b/mysql-test/t/check.test @@ -15,4 +15,4 @@ connection con2; insert into t1 values (200000); connection con1; reap; - +drop table t1; diff --git a/mysql-test/t/compare.test b/mysql-test/t/compare.test index b5596784f35..450d9c0961c 100644 --- a/mysql-test/t/compare.test +++ b/mysql-test/t/compare.test @@ -2,6 +2,7 @@ # Bug when using comparions of strings and integers. # +drop table if exists t1; CREATE TABLE t1 (id CHAR(12) not null, PRIMARY KEY (id)); insert into t1 values ('000000000001'),('000000000002'); explain select * from t1 where id=000000000001; |