englefly commented on code in PR #11812: URL: https://github.com/apache/doris/pull/11812#discussion_r950024170
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Expression.java: ########## @@ -111,4 +112,26 @@ public boolean equals(Object o) { public int hashCode() { return 0; } + + /** + * get the conjuct list from expr + * for example: + * a=1 and f(b)=f(c) and (d=e or x=y) => {a=1, f(b)=f(c), (d=e or x=y)}, list size = 3 + * a=1 or b=1 => {a=1 or b=1}, list size = 1. + * @return conjuct list + */ + public List<Expression> getConjucts() { Review Comment: Ok. this function is 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