From 9b55716a5b9f8d6badea40b553944d8b352fe283 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 9 Apr 2001 18:31:00 -0600 Subject: mysql-test/t/bench_count_distinct.test make table delay key write to speed things up a bit mysql-test/t/bench_count_distinct.test: make table delay key write to speed things up a bit --- mysql-test/t/bench_count_distinct.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/t/bench_count_distinct.test b/mysql-test/t/bench_count_distinct.test index 20d80ff74a1..6bc74f0b1f1 100644 --- a/mysql-test/t/bench_count_distinct.test +++ b/mysql-test/t/bench_count_distinct.test @@ -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) { -- cgit v1.2.1