yuxiqian commented on code in PR #3819: URL: https://github.com/apache/flink-cdc/pull/3819#discussion_r1900682875
########## flink-cdc-runtime/src/test/java/org/apache/flink/cdc/runtime/operators/transform/PostTransformOperatorTest.java: ########## @@ -780,6 +795,76 @@ void testTimestampTransform() throws Exception { transformFunctionEventEventOperatorTestHarness.close(); } + @Test + void testUnixTimestampTransform() throws Exception { + PostTransformOperator transform = + PostTransformOperator.newBuilder() + .addTransform( + UNIX_TIMESTAMP_TABLEID.identifier(), + "col1, FROM_UNIXTIME(44) as from_unixtime," Review Comment: One suit of test case may not be sufficient. Still suggest something like https://github.com/apache/flink-cdc/pull/3698#discussion_r1899936303 Also, separating normal cases and malformed strings would be nice. -- 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