Skip to main content

concat_elements_binary_view_array

Function concat_elements_binary_view_array 

pub fn concat_elements_binary_view_array(
    left: &GenericByteViewArray<BinaryViewType>,
    right: &GenericByteViewArray<BinaryViewType>,
) -> Result<GenericByteViewArray<BinaryViewType>, ArrowError>
Expand description

Concatenates two BinaryViewArrays element-wise. If either element is Null, the result element is also Null.

ยงErrors

  • Returns an error if the input arrays have different lengths.
  • Returns an error if any concatenated value exceeds u32::MAX in length.