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

Fix for CONC79: Performance issue with c client library

Added read-ahed cache for vio to reduce the number of reads
This commit is contained in:
Georg Richter
2014-03-03 11:19:47 +01:00
parent 2ceb2f7ffc
commit 28e7a867f1
3 changed files with 66 additions and 25 deletions

View File

@@ -3859,7 +3859,7 @@ static int test_rename(MYSQL *mysql)
check_mysql_rc(rc, mysql);
rc= mysql_stmt_execute(stmt);
FAIL_IF(!rc, "Errr expected");
FAIL_IF(!rc, "Error expected");
rc= mysql_query(mysql, "create table t3 (a int)");
check_mysql_rc(rc, mysql);