mike-tr-adamson commented on code in PR #2916:
URL: https://github.com/apache/cassandra/pull/2916#discussion_r1403254680


##########
src/java/org/apache/cassandra/index/sai/disk/SSTableIndex.java:
##########
@@ -238,23 +247,25 @@ public boolean equals(Object o)
         if (this == o) return true;
         if (o == null || getClass() != o.getClass()) return false;
         SSTableIndex other = (SSTableIndex)o;
-        return Objects.equal(sstableContext, other.sstableContext) && 
Objects.equal(indexContext, other.indexContext);
+        return Objects.equal(sstableContext, other.sstableContext) &&
+               Objects.equal(indexTermType, other.indexTermType) &&
+               Objects.equal(indexIdentifier, other.indexIdentifier);

Review Comment:
   Yes, it does. I've added them.



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