dcapwell commented on code in PR #4222:
URL: https://github.com/apache/cassandra/pull/4222#discussion_r2192924438
##########
test/harry/main/org/apache/cassandra/harry/model/ASTSingleTableModel.java:
##########
@@ -550,12 +555,40 @@ else if (!clusterings.isEmpty())
}
}
break;
+ case RANGE:
+ LookupContext ctx = new LookupContext(delete);
+ for (BytesPartitionState.Row value : partition.rows())
+ {
+ if (ctx.include(value))
+ partition.deleteRow(value.clustering, nowTs);
Review Comment:
this could cause the partition to become empty, so we need to delete the
partition in this case. Can you update the logic to handle that? There is
similar logic w/e we delete rows
--
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]