diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-04-09 18:31:00 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-04-09 18:31:00 -0600 |
commit | 9b55716a5b9f8d6badea40b553944d8b352fe283 (patch) | |
tree | 2a8a03e629b278fca4dcb44a04f4dade002dd6e9 | |
parent | e19e69fbcb944cb19a87b43ab193f6022c8550d0 (diff) | |
download | mariadb-git-9b55716a5b9f8d6badea40b553944d8b352fe283.tar.gz |
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
-rw-r--r-- | mysql-test/t/bench_count_distinct.test | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |