2005-12-22 06:39:02 +01:00
|
|
|
stop slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
|
|
start slave;
|
|
|
|
create table t1(a int not null primary key) engine=myisam;
|
2007-03-07 11:54:32 +01:00
|
|
|
insert delayed into t1 values (1);
|
|
|
|
insert delayed into t1 values (2);
|
|
|
|
insert delayed into t1 values (3);
|
2005-12-22 06:39:02 +01:00
|
|
|
flush tables;
|
2006-02-16 04:42:16 +01:00
|
|
|
SELECT * FROM t1 ORDER BY a;
|
2005-12-22 06:39:02 +01:00
|
|
|
a
|
|
|
|
1
|
|
|
|
2
|
|
|
|
3
|
2006-02-16 04:42:16 +01:00
|
|
|
SELECT * FROM t1 ORDER BY a;
|
2005-12-22 06:39:02 +01:00
|
|
|
a
|
|
|
|
1
|
|
|
|
2
|
|
|
|
3
|
|
|
|
drop table t1;
|