Constructor
ArrowTablenew_arrays
since: 0.12.0
Declaration [src]
GArrowTable*
garrow_table_new_arrays (
GArrowSchema* schema,
GArrowArray** arrays,
gsize n_arrays,
GError** error
)
Parameters
schema
-
Type:
GArrowSchema
The schema of the table.
The data is owned by the caller of the function. arrays
-
Type: 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
-
Type:
gsize
The number of arrays.
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 . |