diff options
author | bell@sanja.is.com.ua <> | 2002-08-30 21:32:59 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-08-30 21:32:59 +0300 |
commit | 463c59e1e917b1363390def20b8f0ea3bb173cbb (patch) | |
tree | 3b15ca06d9e0a993eaa6b6b1faf4c1885b18a2a2 /mysql-test/t/key_primary.test | |
parent | 76aff6352f8f8d1ce9c0cb9ad7ebb1104dea8412 (diff) | |
download | mariadb-git-463c59e1e917b1363390def20b8f0ea3bb173cbb.tar.gz |
fixed tests to be independed from environment
Diffstat (limited to 'mysql-test/t/key_primary.test')
-rw-r--r-- | mysql-test/t/key_primary.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/key_primary.test b/mysql-test/t/key_primary.test index 75dded5d667..2cdb117128f 100644 --- a/mysql-test/t/key_primary.test +++ b/mysql-test/t/key_primary.test @@ -2,6 +2,7 @@ # test of primary key conversions # +drop table if exists t1; create table t1 (t1 char(3) primary key); insert into t1 values("ABC"); insert into t1 values("ABA"); |