use crate::ArrayData;
use arrow_schema::{ArrowError, DataType};
use super::{_MutableArrayData, Extend};
pub(super) fn build_extend(array: &ArrayData) -> Extend<'_> {
let size = match array.data_type() {
DataType::FixedSizeList(_, i) => *i as usize,
_ => unreachable!(),
};
Box::new(
move |mutable: &mut _MutableArrayData, index: usize, start: usize, len: usize| {
for child in mutable.child_data.iter_mut() {
child.try_extend(index, start * size, (start + len) * size)?;
}
Ok(())
},
)
}
pub(super) fn extend_nulls(mutable: &mut _MutableArrayData, len: usize) -> Result<(), ArrowError> {
let size = match mutable.data_type {
DataType::FixedSizeList(_, i) => i as usize,
_ => unreachable!(),
};
for child in mutable.child_data.iter_mut() {
child.try_extend_nulls(len * size)?;
}
Ok(())
}