maedhroz commented on a change in pull request #1200:
URL: https://github.com/apache/cassandra/pull/1200#discussion_r708582291
##########
File path: src/java/org/apache/cassandra/db/SinglePartitionReadCommand.java
##########
@@ -1047,10 +1048,21 @@ private ClusteringIndexNamesFilter
reduceFilter(ClusteringIndexNamesFilter filte
*/
private boolean isRowComplete(Row row, Columns requestedColumns, long
sstableTimestamp)
{
+ // Static rows do not have row deletion or primary key liveness info
+ if (!row.isStatic())
+ {
+ // If the row has been delete or is part of a range deletion we
know that we have enough information and can
+ // stop at this point.
+ // Note that deleted rows in compact table (non static) do not
have a row deletion. Instead there single column
Review comment:
```suggestion
// Note that deleted rows in compact tables (non static) do not
have a row deletion. Single column cells are
```
--
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]