mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
c6ee60933d
Problem was a null pointer Fixed by passing correct database name to slave filtering mechanism Added test. sql/sql_parse.cc: Fix slave crash when issuing 'ALTER DATABASE' with specifying db name Don't pass null pointer to db_ok_with_wild_table()
10 lines
215 B
Text
10 lines
215 B
Text
source include/master-slave.inc;
|
|
connection master;
|
|
use mysql; # to be different from initial `test' db of mysqltest client
|
|
alter database collate latin1_bin;
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
sync_with_master;
|
|
|
|
|