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

[jira] Updated: (HIVE-560) column pruning not working with map joins

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

Yongqiang He updated HIVE-560:
------------------------------

    Attachment: hive-560-2009-06-19-2.patch

A draft version. But it does not work for join32.q(both with and without mapjoin hint). And ppd_join2.q's output data seems not correct.
Other tests passed.

> column pruning not working with map joins
> -----------------------------------------
>
>                 Key: HIVE-560
>                 URL: https://issues.apache.org/jira/browse/HIVE-560
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Query Processor
>    Affects Versions: 0.4.0
>            Reporter: Namit Jain
>            Assignee: Yongqiang He
>         Attachments: hive-560-2009-06-19-2.patch
>
>
> drop table tst1;
> drop table tst2;
> create table tst1(a1 string, a2 string, a3 string, a4 string);
> create table tst2(b1 string, b2 string, b3 string, b4 string);
> explain select /*+ MAPJOIN(a) */ a.a1, a.a2 from tst1 a join tst2 b ON a.a2=b.b2;
> the select is after the join - column pruning is not happening

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.