We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e01ca4 commit d312a8cCopy full SHA for d312a8c
parquet/src/arrow/arrow_reader/selection.rs
@@ -200,7 +200,8 @@ impl RowSelection {
200
/// Panics if any of the [`BooleanArray`] contain nulls
201
pub fn from_filters(filters: &[BooleanArray]) -> Self {
202
// TODO decide how to do this based on density or something??
203
- Self::Selectors(RowSelectorSelection::from_filters(filters))
+ Self::Mask(BitmaskSelection::from_filters(filters))
204
+ //Self::Selectors(RowSelectorSelection::from_filters(filters))
205
}
206
207
/// Creates a [`RowSelection`] from an iterator of consecutive ranges to keep
0 commit comments