yiyutian1 commented on code in PR #25763:
URL: https://github.com/apache/flink/pull/25763#discussion_r1903771370


##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/functions/TimeFunctionsITCase.java:
##########
@@ -853,18 +848,13 @@ private Stream<TestSetSpec> toTimestampLtzTestCases() {
                                         .toInstant(),
                                 TIMESTAMP_LTZ(3).nullable())
                         .testResult(
-                                toTimestampLtz($("f3"), literal(3)),
-                                "TO_TIMESTAMP_LTZ(f3, 3)",
-                                null,
-                                TIMESTAMP_LTZ(3).nullable())
-                        .testResult(
-                                toTimestampLtz($("f4"), literal(0)),
+                                toTimestampLtz($("f3"), literal(0)),
                                 "TO_TIMESTAMP_LTZ(-" + Double.MAX_VALUE + ", 
0)",
                                 null,
                                 TIMESTAMP_LTZ(3).nullable())
                         .testResult(
-                                toTimestampLtz($("f5"), literal(3)),
-                                "TO_TIMESTAMP_LTZ(f5, 3)",
+                                toTimestampLtz($("f4"), literal(3)),

Review Comment:
   Moved one test case with null input to the end of the stream. 



-- 
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

Reply via email to