Skip to content

Commit a20f24e

Browse files
committed
fix
1 parent 7f115d2 commit a20f24e

File tree

1 file changed

+1
-1
lines changed
  • vortex-array/src/arrays/constant/compute

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mod tests {
5858
)
5959
.unwrap();
6060
let valid_indices: &[usize] = &[1usize];
61-
assert_eq!(taken.to_primitive().unwrap().as_slice::<i32>(), &[0, 42, 0]);
61+
assert_eq!(taken.to_primitive().unwrap().as_slice::<i32>(), &[42, 42, 42]);
6262
assert_eq!(
6363
taken.validity_mask().unwrap().indices(),
6464
AllOr::Some(valid_indices)

0 commit comments

Comments
 (0)