strawboat 0.1.0

A native storage format based on Apache Arrow.
Documentation
1
2
3
4
5
use arrow::{array::NullArray, datatypes::DataType, error::Result};

pub fn read_null(data_type: DataType, length: usize) -> Result<NullArray> {
    NullArray::try_new(data_type, length)
}