nastra commented on code in PR #12133:
URL: https://github.com/apache/iceberg/pull/12133#discussion_r1935610066
##########
core/src/main/java/org/apache/iceberg/actions/SizeBasedDataRewriter.java:
##########
@@ -47,12 +47,13 @@ public abstract class SizeBasedDataRewriter extends
SizeBasedFileRewriter<FileSc
public static final String DELETE_FILE_THRESHOLD = "delete-file-threshold";
public static final int DELETE_FILE_THRESHOLD_DEFAULT = Integer.MAX_VALUE;
- private static final double DELETE_RATIO_THRESHOLD = 0.3;
+ private static final double DEFAULT_DELETE_THRESHOLD = 0.3;
private int deleteFileThreshold;
- protected SizeBasedDataRewriter(Table table) {
- super(table);
+ // Default constructor
+ public SizeBasedDataRewriter(Table table) {
Review Comment:
I don't think these changes here are necessary
--
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]