Fix parser to include iterations.

PiperOrigin-RevId: 347038652
This commit is contained in:
Zach Koopmans
2020-12-11 11:26:42 -08:00
committed by gVisor bot
parent af4afdc0e0
commit 3c673caf86
2 changed files with 23 additions and 6 deletions
+7
View File
@@ -21,6 +21,7 @@ package bigquery
import (
"context"
"fmt"
"strconv"
"strings"
"time"
@@ -109,6 +110,12 @@ func NewBenchmark(name string, iters int) *Benchmark {
return &Benchmark{
Name: name,
Metric: make([]*Metric, 0),
Condition: []*Condition{
{
Name: "iterations",
Value: strconv.Itoa(iters),
},
},
}
}