mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb / r / innodb_bug14676111.result
blobebecd1d00cb56162f5a25539f132ef47ea49ca14
1 drop table if exists t1;
2 CREATE TABLE t1 (a int not null primary key) engine=InnoDB;
3 set global innodb_limit_optimistic_insert_debug = 2;
4 insert into t1 values (1);
5 insert into t1 values (5);
6 insert into t1 values (4);
7 insert into t1 values (3);
8 insert into t1 values (2);
9 analyze table t1;
10 Table   Op      Msg_type        Msg_text
11 test.t1 analyze status  OK
12 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
13 DATA_LENGTH / 16384
14 10.0000
15 delete from t1 where a=4;
16 analyze table t1;
17 Table   Op      Msg_type        Msg_text
18 test.t1 analyze status  OK
19 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
20 DATA_LENGTH / 16384
21 8.0000
22 delete from t1 where a=5;
23 analyze table t1;
24 Table   Op      Msg_type        Msg_text
25 test.t1 analyze status  OK
26 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
27 DATA_LENGTH / 16384
28 5.0000
29 set global innodb_limit_optimistic_insert_debug = 10000;
30 delete from t1 where a=2;
31 analyze table t1;
32 Table   Op      Msg_type        Msg_text
33 test.t1 analyze status  OK
34 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
35 DATA_LENGTH / 16384
36 3.0000
37 insert into t1 values (2);
38 delete from t1 where a=2;
39 analyze table t1;
40 Table   Op      Msg_type        Msg_text
41 test.t1 analyze status  OK
42 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
43 DATA_LENGTH / 16384
44 2.0000
45 insert into t1 values (2);
46 delete from t1 where a=2;
47 analyze table t1;
48 Table   Op      Msg_type        Msg_text
49 test.t1 analyze status  OK
50 select DATA_LENGTH / 16384 from information_schema.TABLES where TABLE_SCHEMA = 'test' and TABLE_NAME = 't1';
51 DATA_LENGTH / 16384
52 1.0000
53 drop table t1;