* garrow_table_get_schema: * @table: A #GArrowTable. * * Returns: (transfer full): The schema of the table. */
| 489 | * Returns: (transfer full): The schema of the table. |
| 490 | */ |
| 491 | GArrowSchema * |
| 492 | garrow_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: |
nothing calls this directly
no test coverage detected