Constructor
ArrowTablenew_chunked_arrays
since: 0.15.0
Declaration [src]
GArrowTable*
garrow_table_new_chunked_arrays (
GArrowSchema* schema,
GArrowChunkedArray** chunked_arrays,
gsize n_chunked_arrays,
GError** error
)
Parameters
schema-
Type:
GArrowSchemaThe schema of the table.
The data is owned by the caller of the function. chunked_arrays-
Type: An array of
GArrowChunkedArray*The chunked arrays of the table.
The length of the array is specified in the n_chunked_arraysargument.The data is owned by the caller of the function. n_chunked_arrays-
Type:
gsizeThe number of chunked 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 aNULLGError*.The argument will left initialized to NULLby 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. |