summaryrefslogtreecommitdiff
path: root/mysql-test/suite/engines/funcs/r/rpl_slave_status.result
blob: c4dc7686045537b7916b93d95391392b65997c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
grant replication slave on *.* to rpl@127.0.0.1 identified by 'rpl';
stop slave;
change master to master_user='rpl',master_password='rpl';
start slave;
drop table if exists t1;
create table t1 (n int);
insert into t1 values (1);
select * from t1;
n
1
drop user rpl@127.0.0.1;
flush privileges;
stop slave;
start slave;
drop table t1;
drop table t1;