From aae47eda8be01bf00436bec1aea90a5e5d3b5830 Mon Sep 17 00:00:00 2001 From: Vinai Rachakonda Date: Fri, 29 Jul 2022 12:28:13 -0700 Subject: [PATCH] [no-release-notes] Switch to millisecond performance (#3965) --- go/performance/import_benchmarker/results.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/performance/import_benchmarker/results.go b/go/performance/import_benchmarker/results.go index a16fa99487..a98f6ed92c 100644 --- a/go/performance/import_benchmarker/results.go +++ b/go/performance/import_benchmarker/results.go @@ -119,7 +119,7 @@ func getResultsRow(res result, cols []*SeedColumn) []string { // set iterations row[6] = fmt.Sprintf("%d", res.br.N) // set time - row[7] = res.br.T.Round(time.Second).String() + row[7] = res.br.T.Round(time.Millisecond * 10).String() // set size_on_disk row[8] = fmt.Sprintf("%v", res.sizeOnDisk) // set rows_per_second