We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49c0e4c commit 011a071Copy full SHA for 011a071
1 file changed
vortex-array/src/arrays/bool/compute/take.rs
@@ -119,7 +119,7 @@ mod test {
119
BoolArray::from_iter([Some(false), None, Some(false)]).to_bit_buffer()
120
);
121
122
- let all_invalid_indices = PrimitiveArray::from_option_iter([None::<u32>, None, None]);
+ let all_invalid_indices = PrimitiveArray::from_option_iter([None::<i32>, None, None]);
123
let b = take(reference.as_ref(), all_invalid_indices.as_ref()).unwrap();
124
assert_arrays_eq!(b, BoolArray::from_iter([None, None, None]));
125
}
0 commit comments