SaketaChalamchala commented on code in PR #8214: URL: https://github.com/apache/ozone/pull/8214#discussion_r2070799000
########## hadoop-hdds/rocksdb-checkpoint-differ/src/main/java/org/apache/ozone/rocksdiff/CompactionNode.java: ########## @@ -41,18 +42,25 @@ public class CompactionNode { public CompactionNode(String file, long numKeys, long seqNum, String startKey, String endKey, String columnFamily) { + this(file, numKeys, seqNum, startKey, endKey, columnFamily, false); + } + + public CompactionNode(String file, long numKeys, long seqNum, + String startKey, String endKey, String columnFamily, + boolean pruned) { fileName = file; totalNumberOfKeys = numKeys; snapshotGeneration = seqNum; cumulativeKeysReverseTraversal = 0L; this.startKey = startKey; this.endKey = endKey; this.columnFamily = columnFamily; + this.pruned = pruned; Review Comment: Yes. -- 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: issues-unsubscr...@ozone.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For additional commands, e-mail: issues-h...@ozone.apache.org