mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed new introduced bug in binlog.test with --ps-protocol
mysql-test/t/binlog.test: Fixed --ps-protocol (Side effect from last patch) sql/sql_db.cc: Removed compiler warning Fixed memory loss on slave tests/mysql_client_test.c: Removed compiler warnings
This commit is contained in:
@ -14724,9 +14724,9 @@ static void test_bug12744()
|
||||
|
||||
mysql_close(mysql);
|
||||
|
||||
if (rc= mysql_stmt_execute(prep_stmt))
|
||||
if ((rc= mysql_stmt_execute(prep_stmt)))
|
||||
{
|
||||
if (rc= mysql_stmt_reset(prep_stmt))
|
||||
if ((rc= mysql_stmt_reset(prep_stmt)))
|
||||
printf("OK!\n");
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user