1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Cleanups:

- Removed some QQ markers
- Removed some rows not compatible with valgrind 3.9.0
- Made mysql_install_db.sh more silent by default. --verbose now gives more information
- Added assert that auto-increment doesn't generate 0 (safety)
- Removed thd->set_time() in some places as it's set in init_for_queries()
- Fixed some --big tests in tokudb
- Fixed a bug in mysql_client_test.cc where sql_mode was not properly reset
This commit is contained in:
Monty
2016-04-05 17:44:12 +03:00
parent d0b178fb45
commit cdd4043117
22 changed files with 2696 additions and 2848 deletions

View File

@@ -16227,7 +16227,6 @@ static void test_change_user()
const char *db= "mysqltest_user_test_database";
int rc;
MYSQL* conn;
DBUG_ENTER("test_change_user");
myheader("test_change_user");
@@ -16240,6 +16239,9 @@ static void test_change_user()
rc= mysql_query(mysql, buff);
myquery(rc);
rc= mysql_query(mysql, "SET SQL_MODE=''");
myquery(rc);
sprintf(buff,
"grant select on %s.* to %s@'%%' identified by '%s'",
db,
@@ -17481,7 +17483,6 @@ static void test_wl4166_2()
mysql_stmt_close(stmt);
rc= mysql_query(mysql, "drop table t1");
myquery(rc);
}