summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2016-01-17 21:23:47 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2016-02-02 14:35:10 +0100
commit36eccebd6f8116bd8940c03701c453db71aecb69 (patch)
tree5700c5295bd5791d0a3ea679403eb78b36e22359 /tests
parent121dc271b0c73822eae5bb39a741490b70c8d39b (diff)
downloadmariadb-git-36eccebd6f8116bd8940c03701c453db71aecb69.tar.gz
Fix client unit test to drop all used tables.
Diffstat (limited to 'tests')
-rw-r--r--tests/mysql_client_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c
index a1a52e832dd..ae4cf6d71d3 100644
--- a/tests/mysql_client_test.c
+++ b/tests/mysql_client_test.c
@@ -15336,7 +15336,7 @@ static void test_mysql_insert_id()
myheader("test_mysql_insert_id");
- rc= mysql_query(mysql, "drop table if exists t1");
+ rc= mysql_query(mysql, "drop table if exists t1,t2");
myquery(rc);
/* table without auto_increment column */
rc= mysql_query(mysql, "create table t1 (f1 int, f2 varchar(255), key(f1))");