You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
call mtr.add_suppression("Slave SQL.*Error .Duplicate entry .10. for key .b.. on query.* Error_code: 1062");
67
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.*error code=1062.*Error on slave:.*Error_code: 0");
Copy file name to clipboardExpand all lines: mysql-test/extra/rpl_tests/rpl_stm_EE_err2.test
+1
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ drop table t1;
25
25
26
26
connection slave;
27
27
--source include/wait_for_slave_sql_to_stop.inc
28
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.* error code=1062.*Error on slave:.* Error_code: 0");
28
29
let $error= query_get_value(SHOW SLAVE STATUS, Last_SQL_Error, 1);
29
30
let $errno= query_get_value(SHOW SLAVE STATUS, Last_SQL_Errno, 1);
30
31
--echo Error: "$error" (expected different error codes on master and slave)
Last_SQL_Error = 'Error 'Table 'test.t4' doesn't exist' on query. Default database: 'test'. Query: 'UPDATE t1 LEFT JOIN t4 ON (t1.id=t4.id) SET a=0 where t1.id=1''
Last_SQL_Error = 'Error 'master may suffer from http://bugs.mysql.com/bug.php?id=24432 so slave stops; check error log on slave for more info' on query. Default database: 'test'. Query: 'INSERT INTO t1(b) VALUES(1),(1),(2) ON DUPLICATE KEY UPDATE t1.b=10''
Copy file name to clipboardExpand all lines: mysql-test/suite/rpl/r/rpl_loaddata.result
+2
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,8 @@ drop table t3;
27
27
create table t1(a int, b int, unique(b));
28
28
insert into t1 values(1,10);
29
29
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
30
+
call mtr.add_suppression("Slave SQL.*Error .Duplicate entry .10. for key .b.. on query.* Error_code: 1062");
31
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.*error code=1062.*Error on slave:.*Error_code: 0");
Copy file name to clipboardExpand all lines: mysql-test/suite/rpl/r/rpl_loaddata_concurrent.result
+2
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ drop table t3;
38
38
create table t1(a int, b int, unique(b));
39
39
insert into t1 values(1,10);
40
40
load data CONCURRENT infile '../../std_data/rpl_loaddata.dat' into table t1;
41
+
call mtr.add_suppression("Slave SQL.*Error .Duplicate entry .10. for key .b.. on query.* Error_code: 1062");
42
+
call mtr.add_suppression("Slave SQL.*Query caused different errors on master and slave.*Error on master:.*error code=1062.*Error on slave:.*Error_code: 0");
INSERT INTO t3 VALUES (2, repeat(_utf8'a', 128), 2);
481
+
call mtr.add_suppression("Slave SQL.*Table definition on master and slave does not match: Column 1 size mismatch.* Error_code: 1535");
482
+
call mtr.add_suppression("Slave SQL.*Could not execute Delete_rows event on table test.t1.* Error_code: 1032");
481
483
include/wait_for_slave_sql_error.inc [errno=1535]
482
484
Last_SQL_Error = 'Table definition on master and slave does not match: Column 1 size mismatch - master has size 384, test.t3 on slave has size 49. Master's column size should be <= the slave's column size.'
0 commit comments