1
# Let's verify that multi-update is not always skipped by slave if
2
# some replicate-* rules exist.
6
drop table if exists t1,t2;
10
a int unsigned not null auto_increment primary key,
12
) ENGINE=$engine_type;
14
eval CREATE TABLE t2 (
15
a int unsigned not null auto_increment primary key,
17
) ENGINE=$engine_type;
19
INSERT INTO t1 VALUES (NULL, 0);
20
INSERT INTO t1 SELECT NULL, 0 FROM t1;
22
INSERT INTO t2 VALUES (NULL, 0), (NULL,1);
24
SELECT * FROM t1 ORDER BY a;
25
SELECT * FROM t2 ORDER BY a;
27
UPDATE t1, t2 SET t1.b = (t2.b+4) WHERE t1.a = t2.a;
28
SELECT * FROM t1 ORDER BY a;
29
SELECT * FROM t2 ORDER BY a;
34
SELECT * FROM t1 ORDER BY a;
35
SELECT * FROM t2 ORDER BY a;
39
sync_slave_with_master;
42
# BUG#13236 multi-update with subquery & --replicate-ignore-table
47
CREATE TABLE t1 ( a INT );
48
INSERT INTO t1 VALUES (0);
49
UPDATE t1, (SELECT 3 as b) AS x SET t1.a = x.b;
51
sync_slave_with_master;
58
sync_slave_with_master;