Skip to content

Commit 23d2717

Browse files
committed
Update scan_metadata table to make duration column ms. #203
1 parent 5c1f4f3 commit 23d2717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hub/scan_metadata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (m ScanMetadata) AsResultRow() map[string]interface{} {
2929
"rows_fetched": m.RowsFetched,
3030
"hydrate_calls": m.HydrateCalls,
3131
"start_time": m.StartTime,
32-
"duration": m.Duration.Seconds(),
32+
"duration": m.Duration.Milliseconds(),
3333
"columns": m.Columns,
3434
}
3535
if m.Limit != -1 {

0 commit comments

Comments
 (0)