summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mnogosearch.org>2013-02-06 20:09:46 +0400
committerAlexander Barkov <bar@mnogosearch.org>2013-02-06 20:09:46 +0400
commit60c4cab3bd00621cc03afb1be6de01c8fab0c5f0 (patch)
tree0ce999864acea2bfcef4885516d231d62cd72831
parent0758b2bdeda8a765712f7e36acc8fcbef3fcc5ca (diff)
downloadmariadb-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.test1
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;