You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Brian Goerlitz (JIRA)" <ji...@apache.org> on 2017/10/20 22:14:00 UTC

[jira] [Created] (HIVE-17869) unix_timestamp(string date, string pattern) UDF does not verify date is valid

Brian Goerlitz created HIVE-17869:
-------------------------------------

             Summary: unix_timestamp(string date, string pattern) UDF does not verify date is valid
                 Key: HIVE-17869
                 URL: https://issues.apache.org/jira/browse/HIVE-17869
             Project: Hive
          Issue Type: Bug
          Components: UDF
    Affects Versions: 1.2.1
            Reporter: Brian Goerlitz


unix_timestamp(string date, string pattern) returns a value in situations which would be expected to return 0 (fail):

{noformat}
hive> -- Date does not exist
    > select unix_timestamp('2017/02/29', 'yyyy/MM/dd');
OK
1488326400
Time taken: 0.317 seconds, Fetched: 1 row(s)
hive> -- Date does not exist
    > select from_unixtime(unix_timestamp('2017/02/29', 'yyyy/MM/dd'));
OK
2017-03-01 00:00:00
Time taken: 0.28 seconds, Fetched: 1 row(s)
hive> -- Date in wrong format
    > select unix_timestamp('2017/02/29', 'MM/dd/yyyy');
OK
-55950393600
Time taken: 0.303 seconds, Fetched: 1 row(s)
{noformat}




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)