Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-15602

Blink planner does not respect the precision when casting timestamp to varchar

    XMLWordPrintableJSON

Details

    Description

      According to SQL 2011 Part 2 Section 6.13 General Rules 11) d)

      If SD is a datetime data type or an interval data type then let Y be the shortest character string that
      conforms to the definition of <literal> in Subclause 5.3, “<literal>”, and such that the interpreted value
      of Y is SV and the interpreted precision of Y is the precision of SD.

      That means:

      select cast(cast(TO_TIMESTAMP('2014-07-02 06:14:00', 'YYYY-MM-DD HH24:mm:SS') as TIMESTAMP(0)) as VARCHAR(256)) from ...;
      // should produce
      // 2014-07-02 06:14:00
      
      select cast(cast(TO_TIMESTAMP('2014-07-02 06:14:00', 'YYYY-MM-DD HH24:mm:SS') as TIMESTAMP(3)) as VARCHAR(256)) from ...;
      // should produce
      // 2014-07-02 06:14:00.000
      
      select cast(cast(TO_TIMESTAMP('2014-07-02 06:14:00', 'YYYY-MM-DD HH24:mm:SS') as TIMESTAMP(9)) as VARCHAR(256)) from ...;
      // should produce
      // 2014-07-02 06:14:00.000000000
      

      One possible solution would be to propagate the precision in org.apache.flink.table.planner.codegen.calls.ScalarOperatorGens#localTimeToStringCode. If I am not mistaken this problem was introduced in FLINK-14599

      Attachments

        Issue Links

          Activity

            People

              docete Zhenghua Gao
              dwysakowicz Dawid Wysakowicz
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 20m
                  20m