=== modified file 'tests/mysql_client_test.c' --- tests/mysql_client_test.c 2013-02-26 08:24:00 +0000 +++ tests/mysql_client_test.c 2013-05-07 23:06:13 +0000 @@ -13943,12 +13943,10 @@ check_execute(stmt, rc); rc= mysql_stmt_execute(stmt); check_execute(stmt, rc); - while ((rc= mysql_stmt_fetch(stmt)) == 0) - { - if (!opt_silent) + if (!opt_silent) + while ((rc= mysql_stmt_fetch(stmt)) == 0) printf("fetched data %d:%d-%d-%d\n", id, hired.year, hired.month, hired.day); - } DIE_UNLESS(rc == MYSQL_NO_DATA); if (!mysql_stmt_free_result(stmt)) mysql_stmt_reset(stmt);