lidavidm commented on a change in pull request #9947: URL: https://github.com/apache/arrow/pull/9947#discussion_r610590072
########## 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: I'll backport this into #9589 since they need to be synced up at some point. -- 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