mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
4504e6d14e
also fix a comment, and update a macro just in case
18 lines
447 B
Text
18 lines
447 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
create table t1 (a int primary key, b int);
|
|
connection slave;
|
|
rename table t1 to t2;
|
|
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;
|
|
connection slave;
|
|
select * from t1;
|
|
a b
|
|
1 1
|
|
3 1
|
|
drop table t2;
|
|
connection master;
|
|
drop table t1;
|
|
include/rpl_end.inc
|