Skip to content

Commit

Permalink
implement take kernel for null arrays (#939) (#944)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Chambers <35960+bjchambers@users.noreply.github.com>
  • Loading branch information
alamb and bjchambers committed Nov 12, 2021
1 parent 320de1c commit 1af9ca5
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions arrow/src/compute/kernels/take.rs
Expand Up @@ -280,6 +280,17 @@ where
.unwrap();
Ok(Arc::new(take_fixed_size_binary(values, indices)?))
}
DataType::Null => {
// Take applied to a null array produces a null array.
if values.len() >= indices.len() {
// If the existing null array is as big as the indices, we can use a slice of it
// to avoid allocating a new null array.
Ok(values.slice(0, indices.len()))
} else {
// If the existing null array isn't big enough, create a new one.
Ok(new_null_array(&DataType::Null, indices.len()))
}
}
t => unimplemented!("Take not supported for data type {:?}", t),
}
}
Expand Down Expand Up @@ -1813,6 +1824,38 @@ mod tests {
.unwrap();
}

#[test]
fn test_null_array_smaller_than_indices() {
let values = NullArray::new(2);
let indices = UInt32Array::from(vec![Some(0), None, Some(15)]);

let result = take(&values, &indices, None).unwrap();
let expected: ArrayRef = Arc::new(NullArray::new(3));
assert_eq!(&result, &expected);
}

#[test]
fn test_null_array_larger_than_indices() {
let values = NullArray::new(5);
let indices = UInt32Array::from(vec![Some(0), None, Some(15)]);

let result = take(&values, &indices, None).unwrap();
let expected: ArrayRef = Arc::new(NullArray::new(3));
assert_eq!(&result, &expected);
}

#[test]
fn test_null_array_indices_out_of_bounds() {
let values = NullArray::new(5);
let indices = UInt32Array::from(vec![Some(0), None, Some(15)]);

let result = take(&values, &indices, Some(TakeOptions { check_bounds: true }));
assert_eq!(
result.unwrap_err().to_string(),
"Compute error: Array index out of bounds, cannot get item at index 15 from 5 entries"
);
}

#[test]
fn test_take_dict() {
let keys_builder = Int16Builder::new(8);
Expand Down

0 comments on commit 1af9ca5

Please sign in to comment.