We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 568f31f commit 5323061Copy full SHA for 5323061
crates/polars-core/src/chunked_array/logical/categorical/mod.rs
@@ -406,9 +406,7 @@ impl LogicalType for CategoricalChunked {
406
407
#[cfg(feature = "bigidx")]
408
{
409
- let s = slf
410
- .physical
411
- .cast_with_options(&DataType::UInt64, options)?;
+ let s = slf.physical.cast_with_options(&DataType::UInt64, options)?;
412
Ok(unsafe { casted_series.take_unchecked(s.u64()?) })
413
}
414
#[cfg(not(feature = "bigidx"))]
0 commit comments