aokolnychyi commented on a change in pull request #2398:
URL: https://github.com/apache/iceberg/pull/2398#discussion_r604638355
##########
File path: core/src/main/java/org/apache/iceberg/ManifestsTable.java
##########
@@ -93,13 +74,13 @@ MetadataTableType metadataTableType() {
protected DataTask task(TableScan scan) {
String location = scan.snapshot().manifestListLocation();
return StaticDataTask.of(
- ops.io().newInputFile(location != null ? location :
ops.current().metadataFileLocation()),
+ ops().io().newInputFile(location != null ? location :
ops().current().metadataFileLocation()),
scan.snapshot().allManifests(),
manifest -> ManifestsTable.manifestFileToRow(spec, manifest));
}
private class ManifestsTableScan extends StaticTableScan {
- ManifestsTableScan() {
+ ManifestsTableScan(TableOperations ops, Table table) {
Review comment:
Won't compile otherwise.
--
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:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]