jackwener commented on code in PR #11067: URL: https://github.com/apache/doris/pull/11067#discussion_r927681429
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/ComparisonPredicate.java: ########## @@ -77,7 +77,7 @@ public boolean equals(Object o) { return false; } ComparisonPredicate other = (ComparisonPredicate) o; - return (type == other.getType()) && Objects.equals(left(), other.left()) + return Objects.equals(left(), other.left()) Review Comment: Because it will be deleted -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org