Skip to content

Commit

Permalink
type coercion
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jul 22, 2024
1 parent 2e322aa commit 60012f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-lazy/src/frame/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl LazyFrame {

/// Turn off all optimizations.
pub fn without_optimizations(self) -> Self {
self.with_optimizations(OptState::from_bits_truncate(0))
self.with_optimizations(OptState::from_bits_truncate(0) | OptState::TYPE_COERCION)
}

/// Toggle projection pushdown optimization.
Expand Down

0 comments on commit 60012f6

Please sign in to comment.