* garrow_chunked_array_datum_new: * @value: A #GArrowChunkedArray. * * Returns: A newly created #GArrowChunkedArrayDatum. * * Since: 1.0.0 */
| 509 | * Since: 1.0.0 |
| 510 | */ |
| 511 | GArrowChunkedArrayDatum * |
| 512 | garrow_chunked_array_datum_new(GArrowChunkedArray *value) |
| 513 | { |
| 514 | auto arrow_value = garrow_chunked_array_get_raw(value); |
| 515 | arrow::Datum arrow_datum(arrow_value); |
| 516 | return garrow_chunked_array_datum_new_raw(&arrow_datum, value); |
| 517 | } |
| 518 | |
| 519 | typedef struct GArrowRecordBatchDatumPrivate_ |
| 520 | { |
nothing calls this directly
no test coverage detected