pub fn arrow_ipc_to_vectors(
ipc_bytes: &[u8],
vtype: VectorType,
dim: usize,
) -> Result<Vec<Vec<u8>>, ArrowError>Expand description
Parse an Arrow IPC byte buffer back into raw vector blobs.
If dim is 0 the dimension is inferred from the FixedSizeListArray’s
value_length(), which is encoded in the Arrow schema.