summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_skip_error.test
blob: cac797d37977c56ce67de3ddba77b7506649871c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# ==== Purpose ====
#
# Verify that --slave-skip-errors works correctly.  The error messages
# specified by --slave-skip-errors on slave should be ignored.  If
# such errors occur, they should not be reported and not cause the
# slave to stop.
#
# ==== Method ====
#
# We run the slave with --slave-skip-errors=1062 (the code for
# duplicate key).  On slave, we insert value 1 in a table, and then,
# on master, we insert value 1 in the table.  The error should be
# ignored on slave.
#
# ==== Related bugs ====
#
# BUG#28839: Errors in strict mode silently stop SQL thread if --slave-skip-errors exists
# bug in this test: BUG#30594: rpl.rpl_skip_error is nondeterministic

source include/master-slave.inc;
source include/have_binlog_format_statement.inc;


--echo ==== Test Without sql_mode=strict_trans_tables ====

--echo [on master]
create table t1 (n int not null primary key);

--echo [on slave]
sync_slave_with_master;
insert into t1 values (1);

--echo [on master]
connection master;
# Here we expect (ignored) error, since 1 is already in slave table 
insert into t1 values (1);
# These should work fine
insert into t1 values (2),(3);

sync_slave_with_master;
--echo [on slave]
select * from t1 order by n;

--echo ==== Test With sql_mode=strict_trans_tables ====
insert into t1 values (7),(8);
--echo [on master]
connection master;
set sql_mode=strict_trans_tables;
insert into t1 values (7), (8), (9);
--echo [on slave]
sync_slave_with_master;
select * from t1 order by n;
source include/show_slave_status2.inc;

--echo ==== Clean Up ====
connection master;
drop table t1;
sync_slave_with_master;
# End of 4.1 tests

#
# #28839 Errors in strict mode silently stop SQL thread if --slave-skip-errors exists
#
connection master;
create table t1(a int primary key);
insert into t1 values (1),(2);
delete from t1 where @@server_id=1;
set sql_mode=strict_trans_tables;
insert into t1 values (7), (8), (9);

--echo [on slave]
sync_slave_with_master;
select * from t1;
source include/show_slave_status2.inc;


--echo ==== Clean Up ====

connection master;
drop table t1;
sync_slave_with_master;
# End of 5.0 tests