* garrow_schema_has_metadata: * @schema: A #GArrowSchema. * * Returns: %TRUE if the schema has metadata, %FALSE otherwise. * * Since: 3.0.0 */
| 412 | * Since: 3.0.0 |
| 413 | */ |
| 414 | gboolean |
| 415 | garrow_schema_has_metadata(GArrowSchema *schema) |
| 416 | { |
| 417 | const auto arrow_schema = garrow_schema_get_raw(schema); |
| 418 | return arrow_schema->HasMetadata(); |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * garrow_schema_get_metadata: |
nothing calls this directly
no test coverage detected