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

[misc] correct declaration-after-statement issue

This commit is contained in:
rusher
2022-04-14 09:47:21 +02:00
parent fb85d99d13
commit ed083576af

View File

@@ -46,11 +46,10 @@ static int test_ps_client_warnings(MYSQL *mysql)
{
int rc;
MYSQL_STMT *stmt;
const char *query= "DROP TABLE IF EXISTS test_non_exists";
SKIP_XPAND;
const char *query= "DROP TABLE IF EXISTS test_non_exists";
rc= mysql_query(mysql, "DROP TABLE if exists test_non_exists");
check_mysql_rc(rc, mysql);