pub unsafe fn decode_rows_from_binary<'a>(
arr: &'a BinaryArray<i64>,
fields: &[EncodingField],
dtypes: &[ArrowDataType],
rows: &mut Vec<&'a [u8]>,
) -> Vec<ArrayRef>
Expand description
Decode rows
into a arrow format
ยงSafety
This will not do any bound checks. Caller must ensure the rows
are valid
encodings.