MCPcopy Create free account
hub / github.com/apache/arrow / garrow_chunked_array_datum_new

Function garrow_chunked_array_datum_new

c_glib/arrow-glib/datum.cpp:511–517  ·  view source on GitHub ↗

* garrow_chunked_array_datum_new: * @value: A #GArrowChunkedArray. * * Returns: A newly created #GArrowChunkedArrayDatum. * * Since: 1.0.0 */

Source from the content-addressed store, hash-verified

509 * Since: 1.0.0
510 */
511GArrowChunkedArrayDatum *
512garrow_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
519typedef struct GArrowRecordBatchDatumPrivate_
520{

Callers

nothing calls this directly

Tested by

no test coverage detected