diff options
author | unknown <msvensson@pilot.mysql.com> | 2008-03-14 17:59:03 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2008-03-14 17:59:03 +0100 |
commit | 17e0770d6eee1bd7ab6e9d1b08be5c531852e727 (patch) | |
tree | cd1e797fbcebe60a93137fe0a67d3591746cf521 /mysql-test/t | |
parent | 510420605f78a8f9c579d9d7a3c794ae968a5e85 (diff) | |
download | mariadb-git-17e0770d6eee1bd7ab6e9d1b08be5c531852e727.tar.gz |
Add missing DROP TABLE
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/archive.test | 1 | ||||
-rw-r--r-- | mysql-test/t/create.test | 1 | ||||
-rw-r--r-- | mysql-test/t/group_by.test | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test index b42c8446a32..7139d95ab49 100644 --- a/mysql-test/t/archive.test +++ b/mysql-test/t/archive.test @@ -1598,3 +1598,4 @@ CREATE TABLE t1(a INT NOT NULL AUTO_INCREMENT, b BLOB, KEY(a)) ENGINE=archive; INSERT INTO t1 VALUES (NULL, NULL),(NULL, NULL); FLUSH TABLE t1; SELECT * FROM t1 ORDER BY a; +DROP TABLE t1; diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 09170cbc4f5..e986495624b 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -1380,6 +1380,7 @@ SHOW CREATE TABLE t2; --echo DROP TABLE t2; +DROP TABLE t1; --echo --echo # -- End of test case for Bug#21380. diff --git a/mysql-test/t/group_by.test b/mysql-test/t/group_by.test index 3211db5d6ed..d5dad3c1032 100644 --- a/mysql-test/t/group_by.test +++ b/mysql-test/t/group_by.test @@ -945,6 +945,7 @@ EXPLAIN SELECT b from t2 GROUP BY b; SELECT b from t2 GROUP BY b; DROP TABLE t1; +DROP TABLE t2; # # Bug #31797: error while parsing subqueries -- WHERE is parsed as HAVING |