mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Fix coding style.
This commit is contained in:
parent
88b01808d9
commit
3a73ef8a86
1 changed files with 16 additions and 10 deletions
|
@ -13893,10 +13893,10 @@ static void test_bug12001()
|
|||
MYSQL *mysql_local;
|
||||
MYSQL_RES *result;
|
||||
const char *query= "DROP TABLE IF EXISTS test_table;"
|
||||
"CREATE TABLE test_table(id INT);"
|
||||
"INSERT INTO test_table VALUES(10);"
|
||||
"UPDATE test_table SET id=20 WHERE id=10;"
|
||||
"SELECT * FROM test_table;"
|
||||
"CREATE TABLE test_table(id INT);"
|
||||
"INSERT INTO test_table VALUES(10);"
|
||||
"UPDATE test_table SET id=20 WHERE id=10;"
|
||||
"SELECT * FROM test_table;"
|
||||
"INSERT INTO non_existent_table VALUES(11);";
|
||||
int rc, res;
|
||||
|
||||
|
@ -13911,7 +13911,9 @@ static void test_bug12001()
|
|||
/* Create connection that supports multi statements */
|
||||
if (!mysql_real_connect(mysql_local, opt_host, opt_user,
|
||||
opt_password, current_db, opt_port,
|
||||
opt_unix_socket, CLIENT_MULTI_STATEMENTS | CLIENT_MULTI_RESULTS)) {
|
||||
opt_unix_socket, CLIENT_MULTI_STATEMENTS |
|
||||
CLIENT_MULTI_RESULTS))
|
||||
{
|
||||
fprintf(stdout, "\n mysql_real_connect() failed");
|
||||
exit(1);
|
||||
}
|
||||
|
@ -13919,12 +13921,16 @@ static void test_bug12001()
|
|||
rc= mysql_query(mysql_local, query);
|
||||
myquery(rc);
|
||||
|
||||
do {
|
||||
if (mysql_field_count(mysql_local) && (result= mysql_use_result(mysql_local))) {
|
||||
mysql_free_result(result);
|
||||
do
|
||||
{
|
||||
if (mysql_field_count(mysql_local) &&
|
||||
(result= mysql_use_result(mysql_local)))
|
||||
{
|
||||
mysql_free_result(result);
|
||||
}
|
||||
} while (!(res= mysql_next_result(mysql_local)));
|
||||
|
||||
}
|
||||
while (!(res= mysql_next_result(mysql_local)));
|
||||
|
||||
rc= mysql_query(mysql_local, "DROP TABLE IF EXISTS test_table");
|
||||
myquery(rc);
|
||||
|
||||
|
|
Loading…
Reference in a new issue