924060929 commented on code in PR #11299: URL: https://github.com/apache/doris/pull/11299#discussion_r934285852
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/TernaryExpression.java: ########## @@ -23,17 +23,4 @@ * Interface for all expression that have three children. */ public interface TernaryExpression extends TernaryNode<Expression, Expression, Expression, Expression> { - - - default Expression first() { - return child(0); - } - - default Expression second() { - return child(1); - } - - default Expression third() { - return child(2); - } } Review Comment: ok, this problem seems fixed by the refactor generic type, so we can remove this default override functions -- 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