rdblue commented on a change in pull request #2905:
URL: https://github.com/apache/iceberg/pull/2905#discussion_r688644810
##########
File path: flink/src/main/java/org/apache/iceberg/flink/source/DataIterator.java
##########
@@ -106,12 +77,15 @@ private void updateCurrentIterator() {
}
}
- abstract CloseableIterator<T> openTaskIterator(FileScanTask scanTask) throws
IOException;
+ private CloseableIterator<T> openTaskIterator(FileScanTask scanTask) throws
IOException {
+ return iteratorReader.open(scanTask, decryptedInputFiles);
+ }
@Override
public void close() throws IOException {
// close the current iterator
currentIterator.close();
tasks = null;
}
+
Review comment:
Nit: unnecessary whitespace change
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]