blob: 66dda4e29a569082c6b97af0572771e0cd697ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
reset slave;
start slave;
show master 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;
|