[ 
https://issues.apache.org/jira/browse/HIVE-22476?focusedWorklogId=439872&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-439872
 ]

ASF GitHub Bot logged work on HIVE-22476:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 02/Jun/20 03:29
            Start Date: 02/Jun/20 03:29
    Worklog Time Spent: 10m 
      Work Description: asfgit closed pull request #1046:
URL: https://github.com/apache/hive/pull/1046


   


----------------------------------------------------------------
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:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 439872)
    Time Spent: 20m  (was: 10m)

> Hive datediff function provided inconsistent results when 
> hive.fetch.task.conversion is set to none
> ---------------------------------------------------------------------------------------------------
>
>                 Key: HIVE-22476
>                 URL: https://issues.apache.org/jira/browse/HIVE-22476
>             Project: Hive
>          Issue Type: Bug
>            Reporter: Slim Bouguerra
>            Assignee: Slim Bouguerra
>            Priority: Major
>              Labels: pull-request-available
>         Attachments: HIVE-22476.10.patch, HIVE-22476.2.patch, 
> HIVE-22476.3.patch, HIVE-22476.5.patch, HIVE-22476.6.patch, 
> HIVE-22476.7.patch, HIVE-22476.7.patch, HIVE-22476.8.patch, 
> HIVE-22476.8.patch, HIVE-22476.8.patch, HIVE-22476.9.patch
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> The actual issue stems to the different date parser used by various part of 
> the engine.
> Fetch task uses udfdatediff via {code} 
> org.apache.hadoop.hive.ql.udf.generic.GenericUDFToDate{code} while the 
> vectorized llap execution uses {code}VectorUDFDateDiffScalarCol{code}.
> This fix is meant to be not very intrusive and will add more support to the 
> GenericUDFToDate by enhancing the parser.
> For the longer term will be better to use one parser for all the operators.
> Thanks [~Rajkumar Singh] for the repro example
> {code} 
> create external table testdatediff(datetimecol string) stored as orc;
> insert into testdatediff values ('2019-09-09T10:45:49+02:00'),('2019-07-24');
> select datetimecol from testdatediff where datediff(cast(current_timestamp as 
> string), datetimecol)<183;
> set hive.ferch.task.conversion=none;
> select datetimecol from testdatediff where datediff(cast(current_timestamp as 
> string), datetimecol)<183;
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to