mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Make "SET @@rocksdb_bulk_load=0" return an error instead of crashing the server
- This is more in line with MariaDB environment - And help with rocksdb.bulk_load_errors test, too
This commit is contained in:
@ -4821,7 +4821,8 @@ end_with_restore_list:
|
||||
goto error;
|
||||
if (!(res= sql_set_variables(thd, lex_var_list, true)))
|
||||
{
|
||||
my_ok(thd);
|
||||
if (!thd->is_error())
|
||||
my_ok(thd);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user