AMashenkov commented on code in PR #2164: URL: https://github.com/apache/ignite-3/pull/2164#discussion_r1226729461
########## modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/prepare/CacheKey.java: ########## @@ -80,9 +66,6 @@ public boolean equals(Object o) { if (!query.equals(cacheKey.query)) { return false; } - if (!Objects.equals(contextKey, cacheKey.contextKey)) { - return false; - } return Arrays.deepEquals(paramTypes, cacheKey.paramTypes); Review Comment: Arrays.equals/hashCode can be used instead of deepEquals/deepHashCode. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org