feiniaofeiafei commented on code in PR #45159: URL: https://github.com/apache/doris/pull/45159#discussion_r1881506335
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/ToDateV2.java: ########## @@ -67,4 +69,19 @@ public List<FunctionSignature> getSignatures() { public <R, C> R accept(ExpressionVisitor<R, C> visitor, C context) { return visitor.visitToDateV2(this, context); } + + @Override + public boolean isPositive() { + return true; + } + + @Override + public int getMonotonicFunctionChildIndex() { + return 0; + } + + @Override + public Expression withConstantArgs(Expression literal) { + return new Date(literal); Review Comment: why don't return new ToDateV2(literal)? -- 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