Skip to content

Commit c9eed3e

Browse files
committed
roachprod-microbench: fix delta string parsing
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
1 parent c9fdac0 commit c9eed3e

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)