valepakh commented on code in PR #7914:
URL: https://github.com/apache/ignite-3/pull/7914#discussion_r3039828340
##########
modules/java-records-tests/src/testFixtures/java/org/apache/ignite/internal/schema/marshaller/Records.java:
##########
@@ -275,7 +281,7 @@ public boolean equals(Object obj) {
@Override
public int hashCode() {
- return Objects.hash(id);
+ return 31 + Objects.hashCode(id);
Review Comment:
It certainly can if we agree that we don't care about the theoretical issue
of hash code incompatibility into which I don't really want to dive.
--
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]