1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-8329 MariaDB crashes when replicate_wild_ignore_table is set to NULL.

Rpl_filter::parse_filter_rule() made NULL-safe.
This commit is contained in:
Alexey Botchkov
2016-12-07 14:42:08 +04:00
parent d67ef7a2fb
commit 1d702ff07c
13 changed files with 45 additions and 0 deletions

View File

@ -40,5 +40,9 @@ SET @@GLOBAL.replicate_do_table="";
SELECT @@GLOBAL.replicate_do_table;
@@GLOBAL.replicate_do_table
SET @@GLOBAL.replicate_do_table=null;
SELECT @@GLOBAL.replicate_do_table;
@@GLOBAL.replicate_do_table
# Cleanup.
SET @@GLOBAL.replicate_do_table = @save_replicate_do_table;