Skip to main content

append_large_u64

Function append_large_u64 

Source
fn append_large_u64(
    builder: &mut impl VariantBuilderExt,
    value: u64,
) -> Result<(), ArrowError>
Expand description

Parquet Variant has no unsigned integer primitive. Treat u64 as i64 first, then use Decimal16 to represent large (larger than i64::MAX) u64.