diff options
author | Georgi Kodinov <kgeorge@mysql.com> | 2008-10-16 14:16:27 +0300 |
---|---|---|
committer | Georgi Kodinov <kgeorge@mysql.com> | 2008-10-16 14:16:27 +0300 |
commit | ca6e05765c7a404377dd84924a816e654b20618d (patch) | |
tree | d628f0a051bafe1a4a5c41835bd5631bb508f99d /mysql-test/t/windows.test | |
parent | 3ad228d7fba6fa2e5b98569f798583b8f8b90db9 (diff) | |
download | mariadb-git-ca6e05765c7a404377dd84924a816e654b20618d.tar.gz |
Bug #39958: Test "windows" lacks a cleanup
Added the missing DROP TABLE
mysql-test/r/windows.result:
Bug #39958: added the missing DROP TABLE
mysql-test/t/windows.test:
Bug #39958: added the missing DROP TABLE
Diffstat (limited to 'mysql-test/t/windows.test')
-rwxr-xr-x[-rw-r--r--] | mysql-test/t/windows.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test index 6976ee98750..6e6a7ec93a3 100644..100755 --- a/mysql-test/t/windows.test +++ b/mysql-test/t/windows.test @@ -33,5 +33,6 @@ drop table t1; # CREATE TABLE t1 (a int, b int); INSERT INTO t1 VALUES (1,1); EXPLAIN SELECT * FROM t1 WHERE b = (SELECT max(2)); +DROP TABLE t1; --echo End of 5.0 tests. |