[[arrow::export]]
| 41 | |
| 42 | // [[arrow::export]] |
| 43 | std::shared_ptr<arrow::RecordBatch> RecordBatchReader__ReadNext( |
| 44 | const std::shared_ptr<arrow::RecordBatchReader>& reader) { |
| 45 | std::shared_ptr<arrow::RecordBatch> batch; |
| 46 | StopIfNotOk(reader->ReadNext(&batch)); |
| 47 | return batch; |
| 48 | } |
| 49 | |
| 50 | // [[arrow::export]] |
| 51 | cpp11::list RecordBatchReader__batches( |
no test coverage detected