Expand description
TODO: add docs This module provides conversions and utilities for working with Arrow data structures.
Modulesยง
- arrow_
array_ to_ column_ conversion - Module for handling conversion from Arrow arrays to columns.
- column_
arrow_ conversions - Module for handling conversions between columns and Arrow arrays.
- owned_
and_ arrow_ conversions - Module for converting between owned and Arrow data structures.
This module provides
From
andTryFrom
implementations to go between arrow and owned types The mapping is as follows:OwnedType
<->Array/ArrayRef
OwnedTable
<->RecordBatch
Boolean
<->Boolean
BigInt
<->Int64
VarChar
<->Utf8/String
Int128
<->Decimal128(38,0)
Decimal75
<->S
- record_
batch_ conversion - Module for converting record batches.
- record_
batch_ errors - Module for record batch error definitions.
- scalar_
and_ i256_ conversions - Module for scalar and i256 conversions.