Commit b9063ca9 authored by unknown's avatar unknown

Fixed bug with ORDER BY on BDB tables.

New benchmarks tests


sql-bench/test-select.sh:
  Fixed row count bug
parent 3ae05104
......@@ -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): " .
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment