1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

mysql-test/t/bench_count_distinct.test

make table delay key write to speed things up a bit
This commit is contained in:
sasha@mysql.sashanet.com
2001-04-09 18:31:00 -06:00
parent 704567d19e
commit 30ca82bc98

View File

@@ -1,5 +1,5 @@
drop table if exists t1;
create table t1(n int not null, key(n));
create table t1(n int not null, key(n)) delay_key_write = 1;
let $1=10000;
while ($1)
{