stop slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;reset master;reset slave;drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;start slave;drop database if exists mysqltest;create database mysqltest;create table mysqltest.t1 ( n int);insert into mysqltest.t1 values(1)/insert into mysqltest.t1 values(2);insert into mysqltest.t1 values(3);insert into mysqltest.t1 values(4);insert into mysqltest.t1 values(5)/select * from mysqltest.t1;n12345