HBASE-12392 Incorrect implementation of
CompactionRequest.isRetainDeleteMarkers(Jingcheng Du)
This commit is contained in:
parent
3876bb764d
commit
8a8b7de760
|
@ -216,7 +216,7 @@ public class CompactionRequest implements Comparable<CompactionRequest> {
|
|||
*/
|
||||
public boolean isRetainDeleteMarkers() {
|
||||
return (this.retainDeleteMarkers != null) ? this.retainDeleteMarkers.booleanValue()
|
||||
: isAllFiles();
|
||||
: !isAllFiles();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue