1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

delete a zero-length frm manually

because DROP TABLE won't do it
This commit is contained in:
Sergei Golubchik
2017-11-22 18:31:06 +01:00
parent 9b7b25993f
commit 9fc53fcafa

View File

@@ -298,6 +298,7 @@ static int test_frm_bug(MYSQL *mysql)
fclose(test_file);
mysql_query(mysql, "drop table if exists test_frm_bug");
unlink(test_frm);
return OK;
}