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

« back to all changes in this revision

Viewing changes to mysql-test/suite/large_tests/r/alter_table.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
drop table if exists t1;
 
2
create table `t1` (`c1` tinyint unsigned not null, key `c1` (`c1`)) 
 
3
engine=myisam default charset=utf8;
 
4
alter table `t1` disable keys;
 
5
insert into t1 values (1),(2),(3),(4);
 
6
insert into t1 select * from t1;
 
7
insert into t1 select * from t1;
 
8
insert into t1 select * from t1;
 
9
insert into t1 select * from t1;
 
10
insert into t1 select * from t1;
 
11
insert into t1 select * from t1;
 
12
insert into t1 select * from t1;
 
13
insert into t1 select * from t1;
 
14
insert into t1 select * from t1;
 
15
insert into t1 select * from t1;
 
16
insert into t1 select * from t1;
 
17
insert into t1 select * from t1;
 
18
insert into t1 select * from t1;
 
19
insert into t1 select * from t1;
 
20
insert into t1 select * from t1;
 
21
insert into t1 select * from t1;
 
22
insert into t1 select * from t1;
 
23
insert into t1 select * from t1;
 
24
insert into t1 select * from t1;
 
25
insert into t1 select * from t1;
 
26
insert into t1 select * from t1;
 
27
insert into t1 select * from t1;
 
28
insert into t1 select * from t1;
 
29
insert into t1 select * from t1;
 
30
insert into t1 select * from t1;
 
31
insert into t1 select * from t1;
 
32
insert into t1 select * from t1;
 
33
insert into t1 select * from t1;
 
34
insert into t1 select * from t1;
 
35
insert into t1 select * from t1 limit 2147483647;
 
36
alter table t1 enable keys;
 
37
drop table t1;