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

fix problems found by 10.0

This commit is contained in:
Oleksandr Byelkin
2021-01-27 13:13:31 +01:00
parent 0b46f1ae42
commit b503e52288
7 changed files with 35 additions and 33 deletions

View File

@@ -519,10 +519,11 @@ static int test_bug11183(MYSQL *mysql)
static int test_bug12744(MYSQL *mysql)
{
SKIP_MAXSCALE;
MYSQL_STMT *stmt = NULL;
int rc;
SKIP_MAXSCALE;
stmt = mysql_stmt_init(mysql);
FAIL_IF(!stmt, mysql_error(mysql));
rc= mysql_stmt_prepare(stmt, "SET @a:=1", 9);
@@ -2066,9 +2067,9 @@ static int test_bug3117(MYSQL *mysql)
static int test_bug36004(MYSQL *mysql)
{
SKIP_MAXSCALE;
int rc, warning_count= 0;
MYSQL_STMT *stmt;
SKIP_MAXSCALE;
if (mysql_get_server_version(mysql) < 60000) {
@@ -2728,10 +2729,10 @@ static int test_bug5194(MYSQL *mysql)
static int test_bug5315(MYSQL *mysql)
{
SKIP_MAXSCALE;
MYSQL_STMT *stmt;
const char *stmt_text;
int rc;
SKIP_MAXSCALE;
if (!is_mariadb)
return SKIP;
@@ -3783,11 +3784,11 @@ static int test_stiny_bug(MYSQL *mysql)
static int test_bug53311(MYSQL *mysql)
{
SKIP_MAXSCALE;
int rc;
MYSQL_STMT *stmt;
int i;
const char *query= "INSERT INTO bug53311 VALUES (1)";
SKIP_MAXSCALE;
rc= mysql_options(mysql, MYSQL_OPT_RECONNECT, "1");
check_mysql_rc(rc, mysql);