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

Function garrow_schema_has_metadata

c_glib/arrow-glib/schema.cpp:414–419  ·  view source on GitHub ↗

* garrow_schema_has_metadata: * @schema: A #GArrowSchema. * * Returns: %TRUE if the schema has metadata, %FALSE otherwise. * * Since: 3.0.0 */

Source from the content-addressed store, hash-verified

412 * Since: 3.0.0
413 */
414gboolean
415garrow_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:

Callers

nothing calls this directly

Calls 2

garrow_schema_get_rawFunction · 0.85
HasMetadataMethod · 0.45

Tested by

no test coverage detected