~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_multi_update4.result

  • 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
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
drop database if exists d1;
 
8
drop database if exists d2;
 
9
drop database if exists d2;
 
10
create database d1;
 
11
create table d1.t0 (id int);
 
12
create database d2;
 
13
use d2;
 
14
create table t1 (id int);
 
15
create table t2 (id int);
 
16
insert into t1 values (1), (2), (3), (4), (5);
 
17
insert into t2 select id + 3 from t1;
 
18
update t1 join t2 using (id) set t1.id = 0;
 
19
insert into d1.t0 values (0);
 
20
use d1;
 
21
select * from t0 where id=0;
 
22
id
 
23
0
 
24
drop database d1;
 
25
drop database d2;