Skip to content

Commit

Permalink
fix(rust): Add temporal feature gate in is_elementwise_top_level (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemanley authored Dec 6, 2024
1 parent bedaefc commit 78717c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polars-plan/src/plans/aexpr/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ impl AExpr {

// Non-strict strptime must be done in-memory to ensure the format
// is consistent across the entire dataframe.
#[cfg(feature = "strings")]
#[cfg(all(feature = "strings", feature = "temporal"))]
Function {
options,
function: FunctionExpr::StringExpr(StringFunction::Strptime(_, opts)),
Expand Down

0 comments on commit 78717c4

Please sign in to comment.