* garrow_table_get_n_rows: * @table: A #GArrowTable. * * Returns: The number of rows in the table. */
| 538 | * Returns: The number of rows in the table. |
| 539 | */ |
| 540 | guint64 |
| 541 | garrow_table_get_n_rows(GArrowTable *table) |
| 542 | { |
| 543 | const auto arrow_table = garrow_table_get_raw(table); |
| 544 | return arrow_table->num_rows(); |
| 545 | } |
| 546 | |
| 547 | /** |
| 548 | * garrow_table_add_column: |
nothing calls this directly
no test coverage detected