* garrow_table_batch_reader_new: * @table: The table to be read. * * Returns: A newly created #GArrowTableBatchReader. * * Since: 0.8.0 */
| 390 | * Since: 0.8.0 |
| 391 | */ |
| 392 | GArrowTableBatchReader * |
| 393 | garrow_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: |
no test coverage detected