We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d6540 commit 450dbd2Copy full SHA for 450dbd2
bench-vortex/src/benchmark_driver.rs
@@ -198,7 +198,11 @@ fn execute_queries<B: Benchmark>(
198
199
runs.push(duration);
200
row_count.inspect(|rc| {
201
- assert_eq!(*rc, current_row_count, "each row count must match")
+ assert_eq!(
202
+ *rc, current_row_count,
203
+ "Row count mismatch between iterations for query {}: previous => {} rows vs. current => {} rows",
204
+ query_idx, *rc, current_row_count
205
+ )
206
});
207
row_count = Some(current_row_count);
208
}
0 commit comments