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

Function garrow_table_get_schema

c_glib/arrow-glib/table.cpp:491–497  ·  view source on GitHub ↗

* garrow_table_get_schema: * @table: A #GArrowTable. * * Returns: (transfer full): The schema of the table. */

Source from the content-addressed store, hash-verified

489 * Returns: (transfer full): The schema of the table.
490 */
491GArrowSchema *
492garrow_table_get_schema(GArrowTable *table)
493{
494 const auto arrow_table = garrow_table_get_raw(table);
495 auto arrow_schema = arrow_table->schema();
496 return garrow_schema_new_raw(&arrow_schema);
497}
498
499/**
500 * garrow_table_get_column_data:

Callers

nothing calls this directly

Calls 2

garrow_table_get_rawFunction · 0.85
schemaMethod · 0.45

Tested by

no test coverage detected