Constructor

ArrowTablenew_chunked_arrays

Declaration [src]

GArrowTable*
garrow_table_new_chunked_arrays (
  GArrowSchema* schema,
  GArrowChunkedArray** chunked_arrays,
  gsize n_chunked_arrays,
  GError** error
)

Description

No description available.
Available since:0.15.0

Parameters

schema GArrowSchema
 

The schema of the table.

 The data is owned by the caller of the function.
chunked_arrays An array of GArrowChunkedArray*
 

The chunked arrays of the table.

 The length of the array is specified in the n_chunked_arrays argument.
 The data is owned by the caller of the function.
n_chunked_arrays gsize
 

The number of chunked arrays.

error GError **
  The return location for a GError*, or NULL.

Return value

Returns: 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.