diff options
author | peter@mysql.com <> | 2002-12-09 19:20:05 +0300 |
---|---|---|
committer | peter@mysql.com <> | 2002-12-09 19:20:05 +0300 |
commit | 710881e4fbc3a4586507bbf1eb3a85a7adfe0048 (patch) | |
tree | 4b13f57fda844faa460e83bbafc51c985a05c826 | |
parent | c63561b22d0c63f50bdcc111b423f7432f0cdeb6 (diff) | |
download | mariadb-git-710881e4fbc3a4586507bbf1eb3a85a7adfe0048.tar.gz |
Proper cleanup for BDB test
-rw-r--r-- | mysql-test/r/bdb_cache.result | 1 | ||||
-rw-r--r-- | mysql-test/t/bdb_cache.test | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/bdb_cache.result b/mysql-test/r/bdb_cache.result index e5c6923162a..ea00feb2111 100644 --- a/mysql-test/r/bdb_cache.result +++ b/mysql-test/r/bdb_cache.result @@ -98,3 +98,4 @@ commit; show status like "Qcache_queries_in_cache"; Variable_name Value Qcache_queries_in_cache 1 +drop table if exists t1, t2, t3; diff --git a/mysql-test/t/bdb_cache.test b/mysql-test/t/bdb_cache.test index aa5572886c5..b1343c5e83e 100644 --- a/mysql-test/t/bdb_cache.test +++ b/mysql-test/t/bdb_cache.test @@ -47,4 +47,5 @@ select * from t3; show status like "Qcache_queries_in_cache"; show status like "Qcache_hits"; commit; -show status like "Qcache_queries_in_cache";
\ No newline at end of file +show status like "Qcache_queries_in_cache"; +drop table if exists t1, t2, t3; |