sdd commented on code in PR #652: URL: https://github.com/apache/iceberg-rust/pull/652#discussion_r1875540709
########## crates/iceberg/src/scan.rs: ########## @@ -951,6 +1077,82 @@ impl FileScanTask { } } +type DeleteFileManagerResult = Result<Option<Arc<Vec<FileScanTaskDeleteFile>>>>; + +/// Manages async retrieval of all the delete files from FileIO that are +/// applicable to the scan. Provides references to them for inclusion within FileScanTasks +#[derive(Debug, Clone)] +struct DeleteFileManager { Review Comment: Refactoring to a separate module -- 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. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org