1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-20744 SET GLOBAL replicate_do_db = DEFAULT causes crash.

DEFAULT for the replicate_do_db is the "" as our documentation states.
This commit is contained in:
Alexey Botchkov
2020-10-23 12:20:17 +04:00
parent 897ea21e57
commit 94b493571a
3 changed files with 12 additions and 1 deletions

View File

@ -37,5 +37,9 @@ SET @@GLOBAL.replicate_do_db=null;
SELECT @@GLOBAL.replicate_do_db;
@@GLOBAL.replicate_do_db
SET @@GLOBAL.replicate_do_db=DEFAULT;
SELECT @@GLOBAL.replicate_do_db;
@@GLOBAL.replicate_do_db
# Cleanup.
SET @@GLOBAL.replicate_do_db = @save_replicate_do_db;