westonpace commented on a change in pull request #9947: URL: https://github.com/apache/arrow/pull/9947#discussion_r610799724
########## File path: cpp/src/arrow/dataset/scanner.h ########## @@ -138,47 +179,147 @@ ARROW_DS_EXPORT Result<ScanTaskIterator> ScanTaskIteratorFromRecordBatch( std::vector<std::shared_ptr<RecordBatch>> batches, std::shared_ptr<ScanOptions> options); -/// \brief Scanner is a materialized scan operation with context and options -/// bound. A scanner is the class that glues ScanTask, Fragment, -/// and Dataset. In python pseudo code, it performs the following: +template <typename T> +struct Enumerated { + T value; + int index; + bool last; +}; + +/// \brief Combines a record batch with the fragment that the record batch originated +/// from +/// +/// Knowing the source fragment can be useful for debugging & understanding loaded data Review comment: Sorry about that. If you want to land #9589 first I can rebase this on top of that. I'm pretty sure the two are fairly compatible although there is some work to adjust to the new structs. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org