Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-3822

Casting from double to timestamp type seems inconsistent

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 0.9.0
    • None
    • None
    • None

    Description

      select cast(1355944339 as timestamp) from decimal_3 limit 1;
      1970-01-16 08:39:04.339
      
      select cast(1355944339000 as timestamp) from decimal_3 limit 1;
      2012-12-19 11:12:19
      
      select cast(1355944339.123456789 as timestamp) from decimal_3 limit 1;
      2012-12-19 11:12:19.1234567
      

      If specifying the unixTimestamp without a decimal point, we need to specify the millisecond timestamp. If specifying with a decimal point, we need to specify only the second timestamp and the rest goes after decimal. Moreover, it seems like some precision is lost (notice '89' are lost in the last query.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              mgrover Mark Grover
              Votes:
              1 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated: