~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/extra/rpl_tests/rpl_multi_update2.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Let's verify that multi-update is not always skipped by slave if
 
2
# some replicate-* rules exist.
 
3
# (BUG#7011)
 
4
 
 
5
--disable_warnings
 
6
drop table if exists t1,t2;
 
7
--enable_warnings
 
8
 
 
9
eval CREATE TABLE t1 (
 
10
 a int unsigned not null auto_increment primary key,
 
11
 b int unsigned
 
12
) ENGINE=$engine_type;
 
13
 
 
14
eval CREATE TABLE t2 (
 
15
 a int unsigned not null auto_increment primary key,
 
16
 b int unsigned
 
17
) ENGINE=$engine_type;
 
18
 
 
19
INSERT INTO t1 VALUES (NULL, 0);
 
20
INSERT INTO t1 SELECT NULL, 0 FROM t1;
 
21
 
 
22
INSERT INTO t2 VALUES (NULL, 0), (NULL,1);
 
23
 
 
24
SELECT * FROM t1 ORDER BY a;
 
25
SELECT * FROM t2 ORDER BY a;
 
26
 
 
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;
 
30
 
 
31
save_master_pos;
 
32
connection slave;
 
33
sync_with_master;
 
34
SELECT * FROM t1 ORDER BY a;
 
35
SELECT * FROM t2 ORDER BY a;
 
36
 
 
37
connection master;
 
38
drop table t1,t2;
 
39
sync_slave_with_master;
 
40
 
 
41
#
 
42
# BUG#13236 multi-update with subquery & --replicate-ignore-table
 
43
#
 
44
reset master;
 
45
 
 
46
connection master;
 
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;
 
50
select * from t1;
 
51
sync_slave_with_master;
 
52
 
 
53
connection slave;
 
54
select * from t1;
 
55
 
 
56
connection master;
 
57
drop table t1;
 
58
sync_slave_with_master;
 
59
 
 
60
# End of 4.1 tests