* 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 */
| 473 | * Since: 0.17.0 |
| 474 | */ |
| 475 | gboolean |
| 476 | garrow_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: |
nothing calls this directly
no test coverage detected