Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn committed Mar 4, 2024
1 parent 9d6695c commit 856aa5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vortex-ree/src/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ mod test {

use vortex::array::bool::BoolArray;
use vortex::array::downcast::DowncastArrayBuiltin;
use vortex::array::Array;
use vortex::array::{Array, CloneOptionalArray};

use crate::compress::ree_decode;
use crate::REEArray;
Expand All @@ -133,7 +133,7 @@ mod test {
let decoded = ree_decode(
arr.ends().as_primitive(),
arr.values().as_primitive(),
arr.validity().cloned(),
arr.validity().clone_optional(),
);

assert_eq!(
Expand Down

0 comments on commit 856aa5d

Please sign in to comment.