mariadb/mysql-test/r/rpl000018.result
unknown 458ced9f34 altered syntax from SLAVE START|STOP to START|STOP SLAVE
mysql-test/mysql-test-run.sh:
  Added --rpl option which tests all t/rpl*.test tests.
2002-10-24 17:46:14 -06:00

13 lines
202 B
Text

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;