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

Function garrow_table_batch_reader_new

c_glib/arrow-glib/reader.cpp:392–398  ·  view source on GitHub ↗

* garrow_table_batch_reader_new: * @table: The table to be read. * * Returns: A newly created #GArrowTableBatchReader. * * Since: 0.8.0 */

Source from the content-addressed store, hash-verified

390 * Since: 0.8.0
391 */
392GArrowTableBatchReader *
393garrow_table_batch_reader_new(GArrowTable *table)
394{
395 auto arrow_table = garrow_table_get_raw(table);
396 auto arrow_table_batch_reader = std::make_shared<arrow::TableBatchReader>(*arrow_table);
397 return garrow_table_batch_reader_new_raw(&arrow_table_batch_reader, table);
398}
399
400/**
401 * garrow_table_batch_reader_set_max_chunk_size:

Callers 1

Calls 2

garrow_table_get_rawFunction · 0.85

Tested by

no test coverage detected