- fixed compile error in tests/client_test.c

(declarations should be on top of a block)
This commit is contained in:
lenz@kallisto.local 2003-11-26 15:22:30 +01:00
parent 3e9338f845
commit 6549791f21

View file

@ -8069,9 +8069,9 @@ static void test_bug1946()
{
MYSQL_STMT *stmt;
int rc;
const char *query= "INSERT INTO prepare_command VALUES (?)";
myheader("test_bug1946");
const char *query= "INSERT INTO prepare_command VALUES (?)";
rc = mysql_query(mysql, "DROP TABLE IF EXISTS prepare_command");
myquery(rc);