You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Namit Jain (JIRA)" <ji...@apache.org> on 2013/03/11 06:25:12 UTC

[jira] [Assigned] (HIVE-4146) bug with hive.auto.convert.join.noconditionaltask with outer joins

     [ https://issues.apache.org/jira/browse/HIVE-4146?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Namit Jain reassigned HIVE-4146:
--------------------------------

    Assignee: Namit Jain
    
> bug with hive.auto.convert.join.noconditionaltask with outer joins
> ------------------------------------------------------------------
>
>                 Key: HIVE-4146
>                 URL: https://issues.apache.org/jira/browse/HIVE-4146
>             Project: Hive
>          Issue Type: Bug
>          Components: Query Processor
>            Reporter: Namit Jain
>            Assignee: Namit Jain
>
> Consider the following scenario:
> create table s2 as select * from src where key = 0;
> set hive.auto.convert.join.noconditionaltask=false;                                       
> SELECT * FROM s1 src1 LEFT OUTER JOIN s1 src2 ON (src1.key = src2.key AND src2.key > 10);
> gives correct results
> 0	val_0	NULL	NULL
> 0	val_0	NULL	NULL
> 0	val_0	NULL	NULL
> whereas it gives no results with hive.auto.convert.join.noconditionaltask set
> to true

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira