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

Function garrow_table_get_n_rows

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

* garrow_table_get_n_rows: * @table: A #GArrowTable. * * Returns: The number of rows in the table. */

Source from the content-addressed store, hash-verified

538 * Returns: The number of rows in the table.
539 */
540guint64
541garrow_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:

Callers

nothing calls this directly

Calls 2

garrow_table_get_rawFunction · 0.85
num_rowsMethod · 0.45

Tested by

no test coverage detected