diff options
author | monty@mysql.com <> | 2006-02-25 13:24:18 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2006-02-25 13:24:18 +0200 |
commit | dd1d40f8f8c306f7310706fed50ccac9c303ab4a (patch) | |
tree | 288406f6e3ace5d4c7f1cf508daf0f377101627d /tests | |
parent | 82b77cdd901bb36d4be23456bc0c5d171a29e3f7 (diff) | |
download | mariadb-git-dd1d40f8f8c306f7310706fed50ccac9c303ab4a.tar.gz |
Fixed new introduced bug in binlog.test with --ps-protocol
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index c265375a263..f58804505d4 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -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 { |