diff options
author | Alexander Barkov <bar@mnogosearch.org> | 2013-02-06 20:09:46 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mnogosearch.org> | 2013-02-06 20:09:46 +0400 |
commit | 60c4cab3bd00621cc03afb1be6de01c8fab0c5f0 (patch) | |
tree | 0ce999864acea2bfcef4885516d231d62cd72831 | |
parent | 0758b2bdeda8a765712f7e36acc8fcbef3fcc5ca (diff) | |
download | mariadb-git-60c4cab3bd00621cc03afb1be6de01c8fab0c5f0.tar.gz |
Adding missing DROP TABLE.
Otherwise, the further tests fail on "table t1 already exists"
-rw-r--r-- | mysql-test/suite/connect/t/odbc_xls.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/suite/connect/t/odbc_xls.test b/mysql-test/suite/connect/t/odbc_xls.test index 1759627c65a..6a94a2902e4 100644 --- a/mysql-test/suite/connect/t/odbc_xls.test +++ b/mysql-test/suite/connect/t/odbc_xls.test @@ -2,6 +2,7 @@ CREATE TABLE t1 ENGINE=CONNECT TABLE_TYPE=ODBC OPTION_LIST='info=yes'; if (!`SELECT count(*) FROM t1 WHERE Name='ConnectEngineXLS'`) { + DROP TABLE t1; Skip Need ODBC data source ConnectEngineXLS; } SHOW CREATE TABLE t1; |