You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Rajesh Balamohan (JIRA)" <ji...@apache.org> on 2015/11/27 06:19:11 UTC

[jira] [Created] (HIVE-12534) Date functions with vectorization is returning wrong results

Rajesh Balamohan created HIVE-12534:
---------------------------------------

             Summary: Date functions with vectorization is returning wrong results
                 Key: HIVE-12534
                 URL: https://issues.apache.org/jira/browse/HIVE-12534
             Project: Hive
          Issue Type: Bug
          Components: Hive
            Reporter: Rajesh Balamohan


{noformat}
select c.effective_date, year(c.effective_date), month(c.effective_date) from customers c where c.customer_id = 1000046028;


hive> set hive.vectorized.execution.enabled=true;
hive> select c.effective_date, year(c.effective_date), month(c.effective_date) from customers c where c.customer_id = 1000046028;

2015-11-19      0       0

hive> set hive.vectorized.execution.enabled=false;
hive> select c.effective_date, year(c.effective_date), month(c.effective_date) from customers c where c.customer_id = 1000046028;

2015-11-19      2015    11
{noformat}

\cc [~gopalv], [~sseth], [~sershe]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)