Skip to content

Commit

Permalink
some more
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Jan 23, 2025
1 parent c1f42e1 commit fb7158a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-io/src/parquet/read/read_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::collections::VecDeque;
use std::ops::Range;

use arrow::array::BooleanArray;
use arrow::bitmap::BitmapBuilder;
use arrow::bitmap::{Bitmap, BitmapBuilder};
use arrow::datatypes::ArrowSchemaRef;
use polars_core::chunked_array::builder::NullChunkedBuilder;
use polars_core::prelude::*;
Expand Down
10 changes: 10 additions & 0 deletions crates/polars-mem-engine/src/executors/multi_file_scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,16 @@ impl PhysicalExpr for PhysicalExprWithConstCols {
self.child.to_field(input_schema)
}

fn isolate_column_expr(
&self,
name: &str,
) -> Option<(
Arc<dyn PhysicalExpr>,
Option<polars_io::predicates::SpecializedColumnPredicateExpr>,
)> {
self.child.isolate_column_expr(name)
}

fn collect_live_columns(&self, lv: &mut PlIndexSet<PlSmallStr>) {
self.child.collect_live_columns(lv)
}
Expand Down

0 comments on commit fb7158a

Please sign in to comment.