Skip to content

Commit

Permalink
try harder
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Dec 19, 2024
1 parent d6edda8 commit 05e8461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encodings/fastlanes/src/bitpacking/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl BitPackedArray {

if let Some(ref patches) = patches {
// Ensure that array and patches have same PType
if patches.dtype() != &DType::from(ptype) {
if patches.dtype().as_nonnullable() != DType::from(ptype).as_nonnullable() {
vortex_bail!(
"Patches DType {} does not match BitPackedArray dtype {}",
patches.dtype().as_nonnullable(),
Expand Down

0 comments on commit 05e8461

Please sign in to comment.