summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl000017.test
blob: 3bff9b4cbd8a46010cd1f5d56a1f07fc39faf5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
connect (master,localhost,root,,test,0,master.sock);
connect (slave,localhost,root,,test,0,slave.sock);
connection master;
reset master;
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
connection slave;
start slave;
connection master;
drop table if exists t1;
create table t1(n int);
insert into t1 values(24);
sync_slave_with_master;
select * from t1;
connection master;
drop table t1;
sync_slave_with_master;