nizhikov commented on code in PR #11438: URL: https://github.com/apache/ignite/pull/11438#discussion_r1758455881
########## modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/exec/exp/ExpressionFactoryImpl.java: ########## @@ -245,11 +246,28 @@ else if (c2 != HIGHEST_VALUE) /** */ @SuppressWarnings("rawtypes") private static int compare(Object o1, Object o2, int nullComparison) { + if (o1 instanceof BinaryObjectImpl) + return compareBinary(o1, o2, nullComparison); + final Comparable c1 = (Comparable)o1; final Comparable c2 = (Comparable)o2; return RelFieldCollation.compare(c1, c2, nullComparison); } + /** */ + private static int compareBinary(Object o1, Object o2, int nullComparison) { + if (o1 == o2) { Review Comment: Fixed. -- 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