summaryrefslogtreecommitdiff
path: root/mysql-test/suite/federated/rpl.test
blob: cc94ea8b7165e3f2d376458bffefca72f3f4488a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
source have_federatedx.inc;
source include/have_binlog_format_row.inc;
source include/master-slave.inc;

create table t1 (a int primary key, b int);

sync_slave_with_master;
rename table t1 to t2;
evalp create table t1 (a int primary key, b int) engine=federated connection='mysql://root@127.0.0.1:$SLAVE_MYPORT/test/t2';
connection master;

insert t1 values (1,1),(2,2),(3,1);
delete from t1 where a=2;
sync_slave_with_master;
select * from t1;
drop table t2;

connection master;
drop table t1;
source include/rpl_end.inc;