| 358 | virtual Status ReadNext(std::shared_ptr<RecordBatch>* batch) = 0; |
| 359 | |
| 360 | virtual Result<RecordBatchWithMetadata> ReadNext() { |
| 361 | return Status::NotImplemented("ReadNext with custom metadata"); |
| 362 | } |
| 363 | |
| 364 | /// \brief Iterator interface |
| 365 | Result<std::shared_ptr<RecordBatch>> Next() { |
no test coverage detected