Constructor
ArrowTablenew_arrays
Declaration [src]
GArrowTable*
garrow_table_new_arrays (
GArrowSchema* schema,
GArrowArray** arrays,
gsize n_arrays,
GError** error
)
Parameters
schema |
GArrowSchema |
The schema of the table. |
|
The data is owned by the caller of the function. | |
arrays |
An array of GArrowArray* |
The arrays of the table. |
|
The length of the array is specified in the n_arrays argument. | |
The data is owned by the caller of the function. | |
n_arrays |
gsize |
The number of arrays. |
|
error |
GError ** |
The return location for a GError* , or NULL . |
Return value
Returns: | GArrowTable |
A newly created |
|
The caller of the function takes ownership of the data, and is responsible for freeing it. | |
The return value can be NULL . |