~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_optimize.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 auto_increment primary key, b int, key(b));
 
8
INSERT INTO t1 (a) VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
 
9
INSERT INTO t1 (a) SELECT null FROM t1;
 
10
INSERT INTO t1 (a) SELECT null FROM t1;
 
11
INSERT INTO t1 (a) SELECT null FROM t1;
 
12
INSERT INTO t1 (a) SELECT null FROM t1;
 
13
INSERT INTO t1 (a) SELECT null FROM t1;
 
14
INSERT INTO t1 (a) SELECT null FROM t1;
 
15
INSERT INTO t1 (a) SELECT null FROM t1;
 
16
INSERT INTO t1 (a) SELECT null FROM t1;
 
17
INSERT INTO t1 (a) SELECT null FROM t1;
 
18
INSERT INTO t1 (a) SELECT null FROM t1;
 
19
INSERT INTO t1 (a) SELECT null FROM t1;
 
20
INSERT INTO t1 (a) SELECT null FROM t1;
 
21
INSERT INTO t1 (a) SELECT null FROM t1;
 
22
update t1 set b=(a/2*rand());
 
23
delete from t1 order by b limit 10000;
 
24
optimize table t1;
 
25
Table   Op      Msg_type        Msg_text
 
26
test.t1 optimize        status  OK
 
27
drop table t1;