maedhroz commented on code in PR #3584:
URL: https://github.com/apache/cassandra/pull/3584#discussion_r1779437813


##########
src/java/org/apache/cassandra/service/reads/AbstractReadExecutor.java:
##########
@@ -431,7 +431,8 @@ public void awaitResponses(boolean 
logBlockingReadRepairAttempt) throws ReadTime
         // return immediately, or begin a read repair
         if (digestResolver.responsesMatch())
         {
-            setResult(digestResolver.getData());
+            PartitionIterator data = digestResolver.getData();
+            
setResult(command.filterForReplicaFilteringProtection().apply(data));

Review Comment:
   This fixes a large class of problems where we need to filter, but I'm not 
entirely sure SRP/paging will work...



-- 
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]

Reply via email to