Skip to content

Commit

Permalink
feat(rust): LazyFrame._with_fast_projection()
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Oct 21, 2023
1 parent 5e96abd commit cce21b8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/polars-lazy/src/frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,11 @@ impl LazyFrame {
self
}

pub fn _with_fast_projection(mut self, toggle: bool) -> Self {
self.opt_state.fast_projection = toggle;
self
}

/// Return a String describing the naive (un-optimized) logical plan.
pub fn describe_plan(&self) -> String {
self.logical_plan.describe()
Expand Down

0 comments on commit cce21b8

Please sign in to comment.