Skip to content

Commit

Permalink
feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jul 24, 2024
1 parent 31d7a85 commit bccaf04
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/polars-ops/src/series/ops/is_in.rs
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,7 @@ pub fn is_in(s: &Series, other: &Series) -> PolarsResult<BooleanChunked> {
let ca = series_bool.bool().unwrap();
Ok(ca.clone())
},
#[cfg(feature = "dtype-decimal")]
DataType::Decimal(_, _) => {
let s = s.decimal()?;
let other = other.decimal()?;
Expand Down

0 comments on commit bccaf04

Please sign in to comment.