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