summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-06-12 17:13:52 +0300
committermonty@hundin.mysql.fi <>2001-06-12 17:13:52 +0300
commit6be95636b1f99fbe417408dec4db85c511e7a8e3 (patch)
treec234898334bacd4b4fb32942b4ee15607524e905 /mysql-test
parenta2e9e16fdd0e72143646f434d1b60d77c255b636 (diff)
downloadmariadb-git-6be95636b1f99fbe417408dec4db85c511e7a8e3.tar.gz
Fixed wrong mysql-test
New german error messages
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/t/check.test2
-rw-r--r--mysql-test/t/compare.test1
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;