Constructor
ArrowTablenew_record_batches
since: 0.12.0
Declaration [src]
GArrowTable*
garrow_table_new_record_batches (
GArrowSchema* schema,
GArrowRecordBatch** record_batches,
gsize n_record_batches,
GError** error
)
Parameters
schema
-
Type:
GArrowSchema
The schema of the table.
The data is owned by the caller of the function. record_batches
-
Type: An array of
GArrowRecordBatch*
The record batches that have data for the table.
The length of the array is specified in the n_record_batches
argument.The data is owned by the caller of the function. n_record_batches
-
Type:
gsize
The number of record batches.
error
-
Type:
GError **
The return location for a recoverable error.
The argument can be NULL
.If the return location is not NULL
, then you must initialize it to aNULL
GError*
.The argument will left initialized to NULL
by the constructor if there are no errors.In case of error, the argument will be set to a newly allocated GError
; the caller will take ownership of the data, and be responsible for freeing it.
Return value
Type: GArrowTable
A newly created GArrowTable
or NULL
on error.
The caller of the function takes ownership of the data, and is responsible for freeing it. |
The return value can be NULL . |