~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_multi_delete.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
source include/master-slave.inc;
 
2
create table t1 (a int primary key);
 
3
create table t2 (a int);
 
4
 
 
5
insert into t1 values (1);
 
6
insert into t2 values (1);
 
7
 
 
8
 
 
9
delete t1.* from t1, t2 where t1.a = t2.a;
 
10
 
 
11
save_master_pos;
 
12
select * from t1;
 
13
select * from t2;
 
14
 
 
15
connection slave;
 
16
sync_with_master;
 
17
select * from t1;
 
18
select * from t2;
 
19
 
 
20
connection master;
 
21
drop table t1,t2;
 
22
save_master_pos;
 
23
connection slave;
 
24
sync_with_master;
 
25
 
 
26
# End of 4.1 tests