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 f504da3 commit 9086da3Copy full SHA for 9086da3
parquet/src/arrow/arrow_reader/read_plan.rs
@@ -323,7 +323,7 @@ impl RowSelectionCursor {
323
324
let total_rows: usize = selectors.iter().map(|s| s.row_count).sum();
325
let selector_count = selectors.len();
326
- const AVG_SELECTOR_LEN_MASK_THRESHOLD: usize = 8;
+ const AVG_SELECTOR_LEN_MASK_THRESHOLD: usize = 30;
327
// Prefer a bitmap mask when the selectors are short on average, as the mask
328
// (re)construction cost is amortized by a simpler execution path during reads.
329
let use_mask = match strategy {
0 commit comments