Skip to content

Commit

Permalink
fix: pass series row selector to file range reader (#5054)
Browse files Browse the repository at this point in the history
  • Loading branch information
evenyag authored Nov 26, 2024
1 parent fae141a commit 6130c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mito2/src/read/scan_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub(crate) fn scan_file_ranges(

for range in ranges {
let build_reader_start = Instant::now();
let reader = range.reader(None).await?;
let reader = range.reader(stream_ctx.input.series_row_selector).await?;
let build_cost = build_reader_start.elapsed();
part_metrics.inc_build_reader_cost(build_cost);
let compat_batch = range.compat_batch();
Expand Down

0 comments on commit 6130c70

Please sign in to comment.