hiliuxg commented on code in PR #3863: URL: https://github.com/apache/flink-cdc/pull/3863#discussion_r1925357513
########## flink-cdc-runtime/src/main/java/org/apache/flink/cdc/runtime/functions/SystemFunctionUtils.java: ########## @@ -105,6 +105,13 @@ public static String dateFormat(TimestampData timestamp, String format) { timestamp.getMillisecond(), format, TimeZone.getTimeZone("UTC")); } + public static String dateFormat(LocalZonedTimestampData timestamp, String format) { + return DateTimeUtils.formatTimestampMillis( + timestamp.getEpochMillisecond(), + format, + TimeZone.getTimeZone(ZoneId.systemDefault())); + } Review Comment: Thank you for taking the time to review my code. Could you please tell me how to fetch the yaml job pipeline configuration in systemfunctionutils class? -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org