RBStreamSerializeResult

Type Alias RBStreamSerializeResult 

Source
type RBStreamSerializeResult = Result<(Vec<ArrowColumnChunk>, MemoryReservation, usize)>;
Expand description

This is the return type of calling [ArrowColumnWriter].close() on each column i.e. the Vec of encoded columns which can be appended to a row group

Aliased Type§

enum RBStreamSerializeResult {
    Ok((Vec<ArrowColumnChunk>, MemoryReservation, usize)),
    Err(DataFusionError),
}

Variants§

§1.0.0

Ok((Vec<ArrowColumnChunk>, MemoryReservation, usize))

Contains the success value

§1.0.0

Err(DataFusionError)

Contains the error value