Method

ArrowRecordBatchget_column_data

Declaration [src]

GArrowArray*
garrow_record_batch_get_column_data (
  GArrowRecordBatch* record_batch,
  gint i
)

Description

No description available.
Available since:0.15.0

Parameters

i gint
 

The index of the target column. If it’s negative, index is counted backward from the end of the columns. -1 means the last column.

Return value

Returns: GArrowArray
 

The i-th column in the record batch on success, NULL on out of index.

 The caller of the method takes ownership of the data, and is responsible for freeing it.
 The return value can be NULL.