You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -193,11 +194,18 @@ export async function runBenchmark(
193
194
rowCount: response.rowCount,
194
195
plan: response.plan,
195
196
tasks: response.tasks,
197
+
statsQError: response.statsQError,
196
198
})
197
199
198
-
console.log(
199
-
`Query ${id} iteration ${i} took ${Math.round(response.elapsed)} ms and returned ${response.rowCount} rows`
200
-
);
200
+
if(response.statsQError!==undefined){
201
+
console.log(
202
+
`Query ${id} iteration ${i} took ${Math.round(response.elapsed)} ms, stats q-error ${response.statsQError.toFixed(2)}x and returned ${response.rowCount} rows`
203
+
);
204
+
}else{
205
+
console.log(
206
+
`Query ${id} iteration ${i} took ${Math.round(response.elapsed)} ms and returned ${response.rowCount} rows`
0 commit comments