godfreyhe commented on a change in pull request #17436: URL: https://github.com/apache/flink/pull/17436#discussion_r732537456
########## File path: flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/expressions/TemporalTypesTest.scala ########## @@ -1116,6 +1117,29 @@ class TemporalTypesTest extends ExpressionTestBase { "1437699600") } + /** + * now Flink only support TIMESTAMP(3) as the return type in TO_TIMESTAMP + * See: https://issues.apache.org/jira/browse/FLINK-14925 + */ + @Test + def testToTimeStampFunctionWithHighPrecision(): Unit = { + testSqlApi( + "TO_TIMESTAMP('1970-01-01 00:00:00.123456789')", + "1970-01-01 00:00:00.123") + + testSqlApi( + "TO_TIMESTAMP('1970-01-01 00:00:00.12345', 'yyyy-MM-dd HH:mm:ss.SSSSS')", + "1970-01-01 00:00:00.123") + + testSqlApi( + "TO_TIMESTAMP('20000202 59:59.1234567', 'yyyyMMdd mm:ss.SSSSSSS')", + "2000-02-02 00:59:59.123") + + testSqlApi( + "TO_TIMESTAMP('1234567', 'SSSSSSS')", + "1970-01-01 00:00:00.123") + } + @Test def testHighPrecisionTimestamp(): Unit = { // EXTRACT should support millisecond/microsecond/nanosecond Review comment: make sense, thanks for the explanation -- 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