mariadb/mysql-test/r/rpl000018.result

13 lines
202 B
Text

reset slave;
start slave;
show binary logs;
Log_name
master-bin.001
master-bin.002
drop table if exists t1;
create table t1(n int);
insert into t1 values (3351);
select * from t1;
n
3351
drop table t1;