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

Fix for CONC-70: Unknown error when reading large packets via conpressed protocol

This commit is contained in:
holzboote@googlemail.com
2014-01-27 21:14:02 +01:00
parent 3912195e17
commit 8c0a7fff46
5 changed files with 148 additions and 76 deletions

View File

@@ -57,7 +57,8 @@ static int test_conc66(MYSQL *my)
diag("Error: %s", mysql_error(mysql));
return FAIL;
}
rc= mysql_query(my, "DROP USER conc66");
rc= mysql_query(my, "DROP USER conc66@localhost");
check_mysql_rc(rc, my);
mysql_close(mysql);
return OK;