1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

more test fixes

This commit is contained in:
Georg Richter
2013-03-13 21:43:39 +01:00
parent d1b93bd17e
commit 7afc51d9aa
7 changed files with 19 additions and 9 deletions

View File

@@ -2885,6 +2885,7 @@ static int test_bug6096(MYSQL *mysql)
check_mysql_rc(rc, mysql);
query_result= mysql_store_result(mysql);
query_field_list= mysql_fetch_fields(query_result);
FAIL_IF(!query_field_list, "fetch_fields faild");
query_field_count= mysql_num_fields(query_result);
stmt= mysql_stmt_init(mysql);
@@ -3710,6 +3711,8 @@ static int test_bug53311(MYSQL *mysql)
return OK;
}
#define PREPARE_SQL "EXPLAIN SELECT t1.*, t2.* FROM test AS t1, test AS t2"
#ifdef NOT_IN_USE
static int test_metadata(MYSQL *mysql)
{
int rc;
@@ -3758,6 +3761,7 @@ end2:
end:
return 0;
}
#endif
static int test_conc_5(MYSQL *mysql)
{