diff options
author | monty@tik.mysql.com <> | 2000-10-27 17:17:19 +0300 |
---|---|---|
committer | monty@tik.mysql.com <> | 2000-10-27 17:17:19 +0300 |
commit | aa0786917e50fe34846a321f209b99f69c55cfd5 (patch) | |
tree | bc62cfb64fc079eed8a16e30644546fdb2987bfa /sql-bench/test-select.sh | |
parent | 99f5d9bb68affb8d9a71cf714bc7517c18695722 (diff) | |
download | mariadb-git-aa0786917e50fe34846a321f209b99f69c55cfd5.tar.gz |
Fixed bug with ORDER BY on BDB tables.
New benchmarks tests
Diffstat (limited to 'sql-bench/test-select.sh')
-rwxr-xr-x | sql-bench/test-select.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-bench/test-select.sh b/sql-bench/test-select.sh index 160a10a1c33..10b36e4be60 100755 --- a/sql-bench/test-select.sh +++ b/sql-bench/test-select.sh @@ -278,7 +278,7 @@ if ($limits->{'group_functions'}) $rows=0; for ($i=0 ; $i < $opt_medium_loop_count ; $i++) { - fetch_all_rows($dbh,"select grp,count(*) from bench1 group by grp"); + $rows+=fetch_all_rows($dbh,"select grp,count(*) from bench1 group by grp"); } $end_time=new Benchmark; print "Time for count_group_on_key_parts ($i:$rows): " . |