Commit 45d99ea1 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Workaround MDEV-34890

parent 7fd73f9a
...@@ -652,6 +652,9 @@ static int handle_one_table(const table_load_params *params, MYSQL *mysql) ...@@ -652,6 +652,9 @@ static int handle_one_table(const table_load_params *params, MYSQL *mysql)
if (exec_sql(mysql, sql_statement)) if (exec_sql(mysql, sql_statement))
DBUG_RETURN(1); DBUG_RETURN(1);
} }
if (exec_sql(mysql, "SET collation_database=binary"))
DBUG_RETURN(1);
to_unix_path(hard_path); to_unix_path(hard_path);
if (verbose) if (verbose)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment