summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_delete_no_where.result
blob: 923cd428aece994a91b55b044abd4e391a074b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include/master-slave.inc
[connection master]
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;
include/rpl_end.inc