mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / rpl / r / rpl_multi_update4.result
blob0c4857bed6001703afa0e65f37ace4263a7c538e
1 include/master-slave.inc
2 [connection master]
3 drop database if exists d1;
4 drop database if exists d2;
5 drop database if exists d2;
6 create database d1;
7 create table d1.t0 (id int);
8 create database d2;
9 use d2;
10 create table t1 (id int);
11 create table t2 (id int);
12 insert into t1 values (1), (2), (3), (4), (5);
13 insert into t2 select id + 3 from t1;
14 update t1 join t2 using (id) set t1.id = 0;
15 insert into d1.t0 values (0);
16 use d1;
17 select * from t0 where id=0;
20 drop database d1;
21 drop database d2;
22 include/rpl_end.inc