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

Function garrow_table_equal_metadata

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

* garrow_table_equal_metadata: * @table: A #GArrowTable. * @other_table: A #GArrowTable to be compared. * @check_metadata: Whether to compare metadata. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 0.17.0 */

Source from the content-addressed store, hash-verified

473 * Since: 0.17.0
474 */
475gboolean
476garrow_table_equal_metadata(GArrowTable *table,
477 GArrowTable *other_table,
478 gboolean check_metadata)
479{
480 const auto arrow_table = garrow_table_get_raw(table);
481 const auto arrow_other_table = garrow_table_get_raw(other_table);
482 return arrow_table->Equals(*arrow_other_table, check_metadata);
483}
484
485/**
486 * garrow_table_get_schema:

Callers

nothing calls this directly

Calls 2

garrow_table_get_rawFunction · 0.85
EqualsMethod · 0.45

Tested by

no test coverage detected