summaryrefslogtreecommitdiff
path: root/mysql-test/r/rpl000018.result
blob: 7211d44052453a1a091fad024b9b9901a07770c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
reset slave;
start slave;
show binary logs;
Log_name
master-bin.000001
master-bin.000002
drop table if exists t1;
create table t1(n int);
insert into t1 values (3351);
select * from t1;
n
3351
drop table t1;