Commit 4dd16832 authored by Mats Kindahl's avatar Mats Kindahl

Automerging

parents 3db8ad3d 6b7998f7
...@@ -134,7 +134,6 @@ INSERT INTO global_supressions VALUES ...@@ -134,7 +134,6 @@ INSERT INTO global_supressions VALUES
("Slave: According to the master's version"), ("Slave: According to the master's version"),
("Slave: Column [0-9]* type mismatch"), ("Slave: Column [0-9]* type mismatch"),
("Slave: Error .* doesn't exist"), ("Slave: Error .* doesn't exist"),
("Slave: Error .*Deadlock found"),
("Slave: Error .*Unknown table"), ("Slave: Error .*Unknown table"),
("Slave: Error in Write_rows event: "), ("Slave: Error in Write_rows event: "),
("Slave: Field .* of table .* has no default value"), ("Slave: Field .* of table .* has no default value"),
......
...@@ -4,6 +4,7 @@ reset master; ...@@ -4,6 +4,7 @@ reset master;
reset slave; reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave; start slave;
call mtr.add_supression("Deadlock found");
**** On Master **** **** On Master ****
SET SESSION BINLOG_FORMAT=ROW; SET SESSION BINLOG_FORMAT=ROW;
CREATE TABLE t1 (a INT PRIMARY KEY, b INT); CREATE TABLE t1 (a INT PRIMARY KEY, b INT);
......
source include/master-slave.inc; source include/master-slave.inc;
call mtr.add_supression("Deadlock found");
--echo **** On Master **** --echo **** On Master ****
connection master; connection master;
SET SESSION BINLOG_FORMAT=ROW; SET SESSION BINLOG_FORMAT=ROW;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment