yzeng1618 commented on PR #10360: URL: https://github.com/apache/seatunnel/pull/10360#issuecomment-3793795949
https://github.com/apache/seatunnel/blob/dev/seatunnel-transforms-v2/src/main/java/org/apache/seatunnel/transform/sql/zeta/functions/DateTimeFunction.java ``` public static boolean isDate(List<Object> args) { try { parsedatetime(args); return true; } catch (Throwable e) { return false; } } In the code, IS_DATE currently directly reuses parsedatetime, so the question is whether we need to maintain compatibility for this part or modify the documentation. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
