We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed305ae commit 0e6538eCopy full SHA for 0e6538e
core/src/main/java/com/scalar/db/transaction/consensuscommit/CommitHandler.java
@@ -848,7 +848,7 @@ public boolean equals(Object o) {
848
return Iterables.elementsEqual(getSet, that.getSet)
849
&& Iterables.elementsEqual(scanSet, that.scanSet)
850
&& Iterables.elementsEqual(scannerSet, that.scannerSet)
851
- && Iterables.elementsEqual(updatedRecordKeys, that.updatedRecordKeys);
+ && Objects.equals(updatedRecordKeys, that.updatedRecordKeys);
852
}
853
854
@Override
0 commit comments