Arrow. RecordBatch
(Arrow v0.1.0)
Copy Markdown
A batch of columnar data: a schema, a row count, and one column per field.
The column at position i corresponds to the field at position i in the
schema, and every column reports the same length.
Summary
Types
@type t() :: %Arrow.RecordBatch{ columns: [Arrow.Array.t()], length: non_neg_integer(), schema: Arrow.Schema.t() }