* 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 */
| 454 | * Since: 0.4.0 |
| 455 | */ |
| 456 | gboolean |
| 457 | garrow_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: |
nothing calls this directly
no test coverage detected