blob: 0a7c255c77963f46b33f0f77630a56fe3f520f16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
include/master-slave.inc
[connection master]
create table t1(a int not null auto_increment, b int, primary key(a) );
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
select * from t1;
a b
1 10
2 15
connection slave;
connection slave;
select * from t1;
a b
1 10
2 15
connection master;
drop table t1;
connection slave;
include/rpl_end.inc
|