Skip to content

Commit 3b2c035

Browse files
craig[bot]herkolategan
andcommitted
107439: roachprod-microbench: fix delta string parsing r=renatolabs a=herkolategan A microbenchmark run, ran into an unexpected value for the delta string produced by the perf package. This change adds the "?" case so that all other values can be parsed correctly. Release note: None Epic: None Co-authored-by: Herko Lategan <[email protected]>
2 parents 8551d57 + c9eed3e commit 3b2c035

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/roachprod-microbench/google/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func (srv *Service) createRawSheet(
212212
vals = append(vals, numCell(entry.Summaries[run].Center))
213213
}
214214
delta := comparison.FormattedDelta
215-
if delta == "~" {
215+
if delta == "~" || delta == "?" {
216216
vals = append(vals, strCell(delta))
217217
} else {
218218
vals = append(vals, percentCell(deltaToNum(delta)))

0 commit comments

Comments
 (0)