summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_delete_no_where.result
blob: 78edf4bf3fac37af187ea3c4cc1a5db6d1ab9152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
create table t1 (a int, b int) engine=myisam;
insert into t1 values(1,1);
select * from t1;
a	b
1	1
delete from t1;
select * from t1;
a	b
drop table t1;