You've already forked mariadb-connector-c
mirror of
https://github.com/mariadb-corporation/mariadb-connector-c.git
synced 2025-08-07 02:42:49 +03:00
Skip test for MDEV-16593 (not fixed yet)
This commit is contained in:
@@ -43,49 +43,6 @@ static int check_bulk(MYSQL *mysql)
|
||||
return OK;
|
||||
}
|
||||
|
||||
static int bulk_insert_id(MYSQL *mysql)
|
||||
{
|
||||
int i;
|
||||
int rc;
|
||||
MYSQL_BIND bind[1];
|
||||
unsigned int array_size= 2;
|
||||
int val_a[2]= {0,1};
|
||||
MYSQL_STMT *stmt= mysql_stmt_init(mysql);
|
||||
|
||||
rc= mysql_query(mysql, "CREATE OR REPLACE TABLE t1 (a int not null auto_increment primary key)");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
rc= mysql_query(mysql, "INSERT INTO t1 VALUES(0),(1)");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
diag("Insert via mysql_query ok");
|
||||
|
||||
rc= mysql_query(mysql, "CREATE OR REPLACE TABLE t1 (a int not null auto_increment primary key)");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
memset(&bind, 0, sizeof(MYSQL_BIND));
|
||||
bind[0].buffer_type= MYSQL_TYPE_LONG;
|
||||
bind[0].buffer= val_a;
|
||||
|
||||
rc= mysql_stmt_prepare(stmt, SL("insert into t1 values(?)"));
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_attr_set(stmt, STMT_ATTR_ARRAY_SIZE, &array_size);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_bind_param(stmt, bind);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_execute(stmt);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
diag("Insert via bulk insert (binary protocol) ok");
|
||||
|
||||
mysql_stmt_close(stmt);
|
||||
exit(1);
|
||||
return OK;
|
||||
}
|
||||
|
||||
static int bulk1(MYSQL *mysql)
|
||||
{
|
||||
MYSQL_STMT *stmt= mysql_stmt_init(mysql);
|
||||
@@ -1039,9 +996,80 @@ static int bulk_null_null(MYSQL *mysql)
|
||||
return OK;
|
||||
}
|
||||
|
||||
static int test_mdev16593(MYSQL *mysql)
|
||||
{
|
||||
int i;
|
||||
int rc;
|
||||
MYSQL_BIND bind[2];
|
||||
unsigned int array_size= 2;
|
||||
int val_a[2]= {1,2};
|
||||
int val_b[2]= {3,4};
|
||||
char indicators[2]= {STMT_INDICATOR_NULL, STMT_INDICATOR_NULL};
|
||||
char *testcase[]= {"MYSQL_TYPE_LONG", "MYSQL_TYPE_NULL", "STMT_INDICATOR_NULL"};
|
||||
|
||||
diag("waiting for server fix");
|
||||
return SKIP;
|
||||
|
||||
for (i=0; i < 3; i++)
|
||||
{
|
||||
MYSQL_RES *res;
|
||||
MYSQL_ROW row;
|
||||
MYSQL_STMT *stmt= mysql_stmt_init(mysql);
|
||||
rc= mysql_query(mysql, "CREATE OR REPLACE TABLE t1 (a int not null auto_increment primary key, b int)");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
memset(&bind, 0, sizeof(MYSQL_BIND));
|
||||
switch (i) {
|
||||
case 0:
|
||||
bind[0].buffer_type= MYSQL_TYPE_LONG;
|
||||
break;
|
||||
case 1:
|
||||
bind[0].buffer_type= MYSQL_TYPE_NULL;
|
||||
break;
|
||||
case 2:
|
||||
bind[0].buffer_type= MYSQL_TYPE_LONG;
|
||||
bind[0].u.indicator= indicators;
|
||||
break;
|
||||
}
|
||||
bind[0].buffer= val_a;
|
||||
bind[1].buffer_type= MYSQL_TYPE_LONG;
|
||||
bind[1].buffer= val_a;
|
||||
|
||||
rc= mysql_stmt_prepare(stmt, SL("insert into t1 values(?,?)"));
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_attr_set(stmt, STMT_ATTR_ARRAY_SIZE, &array_size);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_bind_param(stmt, bind);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_stmt_execute(stmt);
|
||||
check_stmt_rc(rc, stmt);
|
||||
|
||||
rc= mysql_query(mysql, "COMMIT");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
diag("Insert id with buffer_type %s: %lld",
|
||||
testcase[i],
|
||||
mysql_stmt_insert_id(stmt));
|
||||
|
||||
rc= mysql_query(mysql, "SELECT max(a) FROM t1");
|
||||
check_mysql_rc(rc, mysql);
|
||||
|
||||
res= mysql_store_result(mysql);
|
||||
row= mysql_fetch_row(res);
|
||||
diag("Max value for t1.a=%s", row[0]);
|
||||
mysql_free_result(res);
|
||||
|
||||
mysql_stmt_close(stmt);
|
||||
}
|
||||
return OK;
|
||||
}
|
||||
|
||||
struct my_tests_st my_tests[] = {
|
||||
{"check_bulk", check_bulk, TEST_CONNECTION_DEFAULT, 0, NULL, NULL},
|
||||
{"bulk_insert_id", bulk_insert_id, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
||||
{"test_mdev16593", test_mdev16593, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
||||
{"bulk_null_null", bulk_null_null, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
||||
{"test_char_conv1", test_char_conv1, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
||||
{"test_char_conv2", test_char_conv2, TEST_CONNECTION_NEW, 0, NULL, NULL},
|
||||
|
Reference in New Issue
Block a user