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

Function garrow_table_equal

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

* garrow_table_equal: * @table: A #GArrowTable. * @other_table: A #GArrowTable to be compared. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 0.4.0 */

Source from the content-addressed store, hash-verified

454 * Since: 0.4.0
455 */
456gboolean
457garrow_table_equal(GArrowTable *table, GArrowTable *other_table)
458{
459 const auto arrow_table = garrow_table_get_raw(table);
460 const auto arrow_other_table = garrow_table_get_raw(other_table);
461 return arrow_table->Equals(*arrow_other_table);
462}
463
464/**
465 * garrow_table_equal_metadata:

Callers

nothing calls this directly

Calls 2

garrow_table_get_rawFunction · 0.85
EqualsMethod · 0.45

Tested by

no test coverage detected