pub fn deserialize(
    block: &Block,
    fields: &[Field],
    avro_fields: &[AvroField],
    projection: &[bool]
) -> Result<Chunk<Box<dyn Array>>>
Available on crate feature io_avro only.
Expand description

Deserializes a [Block] assumed to be encoded according to [AvroField] into Chunk, using projection to ignore avro_fields.

Panics

fields, avro_fields and projection must have the same length.