Skip to content

Commit 011a071

Browse files
committed
wip
Signed-off-by: Joe Isaacs <joe.isaacs@live.co.uk>
1 parent 49c0e4c commit 011a071

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • vortex-array/src/arrays/bool/compute

vortex-array/src/arrays/bool/compute/take.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ mod test {
119119
BoolArray::from_iter([Some(false), None, Some(false)]).to_bit_buffer()
120120
);
121121

122-
let all_invalid_indices = PrimitiveArray::from_option_iter([None::<u32>, None, None]);
122+
let all_invalid_indices = PrimitiveArray::from_option_iter([None::<i32>, None, None]);
123123
let b = take(reference.as_ref(), all_invalid_indices.as_ref()).unwrap();
124124
assert_arrays_eq!(b, BoolArray::from_iter([None, None, None]));
125125
}

0 commit comments

Comments
 (0)