summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl000017.result
blob: 211f7d629fbd267ea890492aeba0c2b3ec5ae54e (plain)
1
2
3
4
5
6
7
8
9
10
reset master;
grant file on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
slave start;
drop table if exists t1;
create table t1(n int);
insert into t1 values(24);
select * from t1;
n
24
drop table t1;