pvary commented on code in PR #3362: URL: https://github.com/apache/hive/pull/3362#discussion_r907327310
########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/HiveIcebergOutputCommitter.java: ########## @@ -127,14 +133,23 @@ public void commitTask(TaskAttemptContext originalContext) throws IOException { .run(output -> { Table table = HiveIcebergStorageHandler.table(context.getJobConf(), output); if (table != null) { - HiveIcebergWriter writer = writers.get(output); + Collection<DataFile> dataFiles = Lists.newArrayList(); + Collection<DeleteFile> deleteFiles = Lists.newArrayList(); String fileForCommitLocation = generateFileForCommitLocation(table.location(), jobConf, Review Comment: Is this used? -- 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