~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug38205.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

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
 
create table t1i(n int primary key) engine=innodb;
8
 
create table t2m(n int primary key) engine=myisam;
9
 
begin;
10
 
insert into t1i values (1);
11
 
insert into t1i values (2);
12
 
insert into t1i values (3);
13
 
commit;
14
 
begin;
15
 
insert into t1i values (5);
16
 
begin;
17
 
insert into t1i values (4);
18
 
insert into t2m values (1);
19
 
update t1i set n = 5 where n = 4;
20
 
commit;
21
 
zero
22
 
0
23
 
*** kill sql thread ***
24
 
rollback;
25
 
*** sql thread is *not* running: No ***
26
 
*** the prove: the killed slave has not finished the current transaction ***
27
 
three
28
 
3
29
 
one
30
 
1
31
 
zero
32
 
0
33
 
delete from t2m;
34
 
start slave sql_thread;
35
 
delete from t1i;
36
 
delete from t2m;
37
 
begin;
38
 
insert into t1i values (5);
39
 
begin;
40
 
insert into t1i values (4);
41
 
update t1i set n = 5 where n = 4;
42
 
commit;
43
 
zero
44
 
0
45
 
stop slave sql_thread;
46
 
rollback;
47
 
*** sql thread is *not* running: No ***
48
 
*** the prove: the stopped slave has rolled back the current transaction ***
49
 
zero
50
 
0
51
 
zero
52
 
0
53
 
one
54
 
1
55
 
start slave sql_thread;
56
 
drop table t1i, t2m;