fix(kernels): drop removed std::simd::Select import

`std::simd::Select` no longer exists in current nightly's portable_simd
API; methods now hang off `Mask` inherently. The unused import was
preventing the crate (and everything depending on it -- qroissant-arrow,
qroissant-python) from building on a current nightly toolchain.
This commit is contained in:
Cam Zalewski 2026-05-20 14:41:37 +01:00
parent f24af467ec
commit aa2c0a2ec7

View file

@ -8,7 +8,6 @@
//! Each transform function uses `portable_simd` for the aligned middle of the //! Each transform function uses `portable_simd` for the aligned middle of the
//! slice and falls back to a scalar loop for the head and tail. //! slice and falls back to a scalar loop for the head and tail.
use std::simd::Select;
use std::simd::prelude::*; use std::simd::prelude::*;
use crate::nulls::Q_NULL_DATE; use crate::nulls::Q_NULL_DATE;