kevinrr888 commented on code in PR #5590:
URL: https://github.com/apache/accumulo/pull/5590#discussion_r2116031074


##########
server/manager/src/main/java/org/apache/accumulo/manager/tableOps/merge/DeleteRows.java:
##########
@@ -287,23 +288,24 @@ private List<Range> 
createRangesForDeletion(TabletMetadata tabletMetadata,
 
     if (deleteRange.overlaps(tabletExtent)) {
       if (deleteRange.prevEndRow() != null
-          && tabletExtent.contains(followingRow(deleteRange.prevEndRow()))) {
-        log.trace("Fencing tablet {} files to ({},{}]", tabletExtent, 
tabletExtent.prevEndRow(),
-            deleteRange.prevEndRow());
+          && tabletExtent.contains(followingRow(deleteRange.prevEndRow()))
+          && !Objects.equals(tabletExtent.prevEndRow(), 
deleteRange.prevEndRow())) {

Review Comment:
   could add comment



-- 
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: notifications-unsubscr...@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to