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

Function garrow_table_datum_new

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

* garrow_table_datum_new: * @value: A #GArrowTable. * * Returns: A newly created #GArrowTableDatum. * * Since: 1.0.0 */

Source from the content-addressed store, hash-verified

711 * Since: 1.0.0
712 */
713GArrowTableDatum *
714garrow_table_datum_new(GArrowTable *value)
715{
716 auto arrow_value = garrow_table_get_raw(value);
717 arrow::Datum arrow_datum(arrow_value);
718 return garrow_table_datum_new_raw(&arrow_datum, value);
719}
720
721G_END_DECLS
722

Callers

nothing calls this directly

Calls 2

garrow_table_get_rawFunction · 0.85

Tested by

no test coverage detected