\brief Iterator interface
| 363 | |
| 364 | /// \brief Iterator interface |
| 365 | Result<std::shared_ptr<RecordBatch>> Next() { |
| 366 | std::shared_ptr<RecordBatch> batch; |
| 367 | ARROW_RETURN_NOT_OK(ReadNext(&batch)); |
| 368 | return batch; |
| 369 | } |
| 370 | |
| 371 | /// \brief finalize reader |
| 372 | virtual Status Close() { return Status::OK(); } |
no test coverage detected