deniskuzZ commented on code in PR #5251: URL: https://github.com/apache/hive/pull/5251#discussion_r1639629226
########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/FilesForCommit.java: ########## @@ -35,27 +36,31 @@ public class FilesForCommit implements Serializable { private final Collection<DeleteFile> deleteFiles; private final Collection<DataFile> replacedDataFiles; private final Collection<CharSequence> referencedDataFiles; + private final Collection<Path> mergedAndDeletedFiles; public FilesForCommit(Collection<DataFile> dataFiles, Collection<DeleteFile> deleteFiles) { this(dataFiles, deleteFiles, Collections.emptyList()); } public FilesForCommit(Collection<DataFile> dataFiles, Collection<DeleteFile> deleteFiles, - Collection<DataFile> replacedDataFiles, Collection<CharSequence> referencedDataFiles) { + Collection<DataFile> replacedDataFiles, Collection<CharSequence> referencedDataFiles, Review Comment: not it this PR, but maybe we should also use PATH for referencedDataFiles -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org