summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_alter_db.test
blob: f6f0782580f61c37120dcd8e5402aefbabec460b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source include/master-slave.inc;

--echo ==== Verify that alter database does not stop replication ====

create database temp_db;
use temp_db; # to be different from initial `test' db of mysqltest client
alter database collate latin1_bin;

sync_slave_with_master;

--echo ==== Clean up ====
connection master;
drop database temp_db;
sync_slave_with_master;
--source include/rpl_end.inc