\brief Iterator interface
| 368 | |
| 369 | /// \brief Iterator interface |
| 370 | Result<std::shared_ptr<RecordBatch>> Next() { |
| 371 | std::shared_ptr<RecordBatch> batch; |
| 372 | ARROW_RETURN_NOT_OK(ReadNext(&batch)); |
| 373 | return batch; |
| 374 | } |
| 375 | |
| 376 | /// \brief finalize reader |
| 377 | virtual Status Close() { return Status::OK(); } |
no test coverage detected