[
https://issues.apache.org/jira/browse/HIVE-17038?focusedWorklogId=450123&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-450123
]
ASF GitHub Bot logged work on HIVE-17038:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 24/Jun/20 00:26
Start Date: 24/Jun/20 00:26
Worklog Time Spent: 10m
Work Description: github-actions[bot] closed pull request #204:
URL: https://github.com/apache/hive/pull/204
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 450123)
Time Spent: 20m (was: 10m)
> invalid result when CAST-ing to DATE
> ------------------------------------
>
> Key: HIVE-17038
> URL: https://issues.apache.org/jira/browse/HIVE-17038
> Project: Hive
> Issue Type: Bug
> Components: CLI, Hive
> Affects Versions: 1.2.1
> Reporter: Jim Hopper
> Priority: Major
> Labels: pull-request-available
> Time Spent: 20m
> Remaining Estimate: 0h
>
> when casting incorrect date literals to DATE data type hive returns wrong
> values instead of NULL.
> {code}
> SELECT CAST('2017-02-31' AS DATE);
> SELECT CAST('2017-04-31' AS DATE);
> {code}
> Some examples below where it really can produce weird results:
> {code}
> select *
> from (
> select cast('2017-07-01' as date) as dt
> ) as t
> where t.dt = '2017-06-31';
> select *
> from (
> select cast('2017-07-01' as date) as dt
> ) as t
> where t.dt = cast('2017-06-31' as date);
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)