summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_stm_EE_err2.result
blob: 1c479713c89d2a10716265a985f797c81b8a579b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include/master-slave.inc
[connection master]
create table t1 (a int, unique(a)) engine=myisam;
set sql_log_bin=0;
insert into t1 values(2);
set sql_log_bin=1;
insert into t1 values(1),(2);
ERROR 23000: Duplicate entry '2' for key 'a'
drop table t1;
include/wait_for_slave_sql_to_stop.inc
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.* error code=1062.*Error on slave:.* error.* 0");
Error: "Query caused different errors on master and slave.     Error on master: message (format)='Duplicate entry '%-.192s' for key %d' error code=1062 ; Error on slave: actual message='no error', error code=0. Default database: 'test'. Query: 'insert into t1 values(1),(2)'" (expected different error codes on master and slave)
Errno: "0" (expected 0)
drop table t1;
include/stop_slave.inc
RESET SLAVE;
include/rpl_end.inc