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

Function garrow_chunked_array_new_raw

c_glib/arrow-glib/chunked-array.cpp:469–480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467}
468
469GArrowChunkedArray *
470garrow_chunked_array_new_raw(std::shared_ptr<arrow::ChunkedArray> *arrow_chunked_array,
471 GArrowDataType *data_type)
472{
473 auto chunked_array = GARROW_CHUNKED_ARRAY(g_object_new(GARROW_TYPE_CHUNKED_ARRAY,
474 "chunked-array",
475 arrow_chunked_array,
476 "data-type",
477 data_type,
478 NULL));
479 return chunked_array;
480}
481
482std::shared_ptr<arrow::ChunkedArray>
483garrow_chunked_array_get_raw(GArrowChunkedArray *chunked_array)

Calls

no outgoing calls

Tested by

no test coverage detected