mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
|
drop table if exists t1;
|
||
|
create table `t1` (`c1` tinyint unsigned not null, key `c1` (`c1`))
|
||
|
engine=myisam default charset=utf8;
|
||
|
alter table `t1` disable keys;
|
||
|
insert into t1 values (1),(2),(3),(4);
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1;
|
||
|
insert into t1 select * from t1 limit 2147483647;
|
||
|
alter table t1 enable keys;
|
||
|
drop table t1;
|