Skip to content

Commit 36ecceb

Browse files
committed
Fix client unit test to drop all used tables.
1 parent 121dc27 commit 36ecceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/mysql_client_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15336,7 +15336,7 @@ static void test_mysql_insert_id()
1533615336

1533715337
myheader("test_mysql_insert_id");
1533815338

15339-
rc= mysql_query(mysql, "drop table if exists t1");
15339+
rc= mysql_query(mysql, "drop table if exists t1,t2");
1534015340
myquery(rc);
1534115341
/* table without auto_increment column */
1534215342
rc= mysql_query(mysql, "create table t1 (f1 int, f2 varchar(255), key(f1))");

0 commit comments

Comments
 (0)