You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Gopal V (JIRA)" <ji...@apache.org> on 2017/03/05 12:35:32 UTC

[jira] [Created] (HIVE-16113) PartitionPruner::removeNonPartCols breaks NULL based udfs like NVL

Gopal V created HIVE-16113:
------------------------------

             Summary: PartitionPruner::removeNonPartCols breaks NULL based udfs like NVL
                 Key: HIVE-16113
                 URL: https://issues.apache.org/jira/browse/HIVE-16113
             Project: Hive
          Issue Type: Bug
          Components: Logical Optimizer
    Affects Versions: 2.1.1, 1.2.1, 2.2.0
            Reporter: Gopal V


{code}
create table daysales (customer int) partitioned by (dt string);

insert into daysales partition(dt='2001-01-01') values(1);

select * from daysales where nvl(dt='2001-01-01' and customer=1, false);
0 ROWS
{code}





--
This message was sent by Atlassian JIRA
(v6.3.15#6346)