~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_row_delayed_ins.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
create table t1(a int not null primary key) engine=myisam;
 
8
insert delayed into t1 values (1);
 
9
insert delayed into t1 values (2);
 
10
insert delayed into t1 values (3);
 
11
flush tables;
 
12
SELECT * FROM t1 ORDER BY a;
 
13
a
 
14
1
 
15
2
 
16
3
 
17
SELECT * FROM t1 ORDER BY a;
 
18
a
 
19
1
 
20
2
 
21
3
 
22
drop table t1;