Readonly
numThe number of columns in this RecordBatch.
Readonly
numThe number of rows in this RecordBatch.
Readonly
schemaThe Schema
of this RecordBatch.
Export this RecordBatch to FFI structs according to the Arrow C Data Interface.
This method does consume the RecordBatch, so the original RecordBatch will be
inaccessible after this call. You must still call FFIRecordBatch.free
after
you've finished using the FFIRecordBatch.
Return a new RecordBatch where each column is sliced
according to offset
and length
Export this RecordBatch to FFI structs according to the Arrow C Data Interface.
This method does not consume the RecordBatch, so you must remember to call RecordBatch.free
to release the resources. The underlying arrays are reference counted, so
this method does not copy data, it only prevents the data from being released.
Override the schema of this [RecordBatch
]
Returns an error if schema
is not a superset of the current schema
as determined by [Schema::contains
]
A group of columns of equal length in WebAssembly memory with an associated
Schema
.