khandelwal-prateek commented on code in PR #4146:
URL: https://github.com/apache/gobblin/pull/4146#discussion_r2509427189
##########
gobblin-data-management/src/main/java/org/apache/gobblin/data/management/copy/iceberg/IcebergTable.java:
##########
@@ -344,4 +351,119 @@ protected void updateSchema(Schema updatedSchema, boolean
onlyValidate) throws T
}
}
+ /**
+ * Container for file path, partition information, and file size.
+ */
+ public static class FilePathWithPartition {
+ private final String filePath;
+ private final Map<String, String> partitionData;
+ private final long fileSize;
+
+ public FilePathWithPartition(String filePath, Map<String, String>
partitionData) {
+ this(filePath, partitionData, 0L);
Review Comment:
this was used only in test cases, removed the 2 arg constructor
--
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]