mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
28 lines
547 B
Plaintext
28 lines
547 B
Plaintext
source include/have_tokudb.inc;
|
|
set default_storage_engine=tokudb;
|
|
disable_warnings;
|
|
drop table if exists t;
|
|
enable_warnings;
|
|
create table t (
|
|
id bigint not null,
|
|
a bigint not null default 0,
|
|
b bigint not null default 0,
|
|
c bigint not null default 0,
|
|
primary key(id, a)
|
|
);
|
|
|
|
set tokudb_commit_sync=0;
|
|
let $id=0;
|
|
while ($id < 1000) {
|
|
let $a=0;
|
|
while ($a < 100) {
|
|
eval insert into t (id,a) values ($id,$a);
|
|
inc $a;
|
|
}
|
|
inc $id;
|
|
}
|
|
|
|
delete from t where id=404;
|
|
insert into t values (404,0,0,0);
|
|
|
|
drop table t; |