Skip to content

Commit

Permalink
fix test for windows 64
Browse files Browse the repository at this point in the history
  • Loading branch information
sanja-byelkin committed Mar 10, 2017
1 parent f2fe5cb commit eb57469
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions tests/mysql_client_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -19460,23 +19460,31 @@ static void test_big_packet()
}


/* Test simple prepares of all DML statements */

static void test_prepare_analyze()
{
MYSQL_STMT *stmt;
const char *query= "ANALYZE SELECT 1";
int rc;
myheader("test_prepare_analyze");

stmt= mysql_stmt_init(mysql);
check_stmt(stmt);
rc= mysql_stmt_prepare(stmt, "ANALYZE SELECT 1", -1);
rc= mysql_stmt_prepare(stmt, query, strlen(query));
check_execute(stmt, rc);
verify_param_count(stmt, 0);

rc= mysql_stmt_execute(stmt);
check_execute(stmt, rc);

mysql_stmt_close(stmt);
rc= mysql_stmt_store_result(stmt);
check_execute(stmt, rc);

while (!(rc= mysql_stmt_fetch(stmt)))
;

DIE_UNLESS(rc == MYSQL_NO_DATA);

rc= mysql_stmt_close(stmt);
check_execute(stmt, rc);
}

static struct my_tests_st my_tests[]= {
Expand Down

0 comments on commit eb57469

Please sign in to comment.