Skip to content

Commit 7959ca2

Browse files
committed
Fix benchmark loop count
1 parent 18f28d2 commit 7959ca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bench/bench-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function query_with_timing() {
2020
}
2121

2222
function bench() {
23-
for i in {1..$REPEATS}; do
23+
for i in `seq $REPEATS`; do
2424
query_with_timing "$1" | tail -1
2525
done | awk '{ print $2 }' | average;
2626
}

0 commit comments

Comments
 (0)