2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
8
grant replication slave on *.* to replicate@localhost identified by 'aaaaaaaaaaaaaaab';
9
grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaaaaaab';
11
drop table if exists t1;
12
create table t1(n int);
13
insert into t1 values(24);
18
delete from mysql.user where user="replicate";