diff options
author | unknown <serg@serg.mylan> | 2003-11-15 12:30:32 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-11-15 12:30:32 +0100 |
commit | 9547cffc52ba0735d82b8ac9dd63b0feff403d76 (patch) | |
tree | 5652a083a2df47f8b4cbce24b50127d08ebf35c5 | |
parent | 9d417b7b798d02fed49efdf4ce7c4ea86c083ddd (diff) | |
download | mariadb-git-9547cffc52ba0735d82b8ac9dd63b0feff403d76.tar.gz |
cleanup
-rw-r--r-- | mysql-test/r/innodb.result | 2 | ||||
-rw-r--r-- | mysql-test/t/innodb.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/innodb.result b/mysql-test/r/innodb.result index af39dbf51f1..caf51d593f3 100644 --- a/mysql-test/r/innodb.result +++ b/mysql-test/r/innodb.result @@ -1,4 +1,4 @@ -drop table if exists t1,t2,t3; +drop table if exists t1,t2,t3,t4; drop database if exists mysqltest; create table t1 (id int unsigned not null auto_increment, code tinyint unsigned not null, name char(20) not null, primary key (id), key (code), unique (name)) type=innodb; insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David'), (2, 'Erik'), (3, 'Sasha'), (3, 'Jeremy'), (4, 'Matt'); diff --git a/mysql-test/t/innodb.test b/mysql-test/t/innodb.test index f298b1abf53..3349ea21c45 100644 --- a/mysql-test/t/innodb.test +++ b/mysql-test/t/innodb.test @@ -5,7 +5,7 @@ # --disable_warnings -drop table if exists t1,t2,t3; +drop table if exists t1,t2,t3,t4; drop database if exists mysqltest; --enable_warnings |