[
https://issues.apache.org/jira/browse/HIVE-560?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Namit Jain resolved HIVE-560.
-----------------------------
Resolution: Fixed
Fix Version/s: 0.4.0
Hadoop Flags: [Reviewed]
Committed. Thanks Yongqiang
> 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
> Fix For: 0.4.0
>
> Attachments: hive-560-2009-06-19-2.patch,
> hive-560-2009-06-19-5.patch,
> hive-560-2009-06-24-mapjoin-before-column-pruning.patch,
> hive-560-2009-06-24-normal(mapjoin-after-column-pruning).patch,
> hive-560-2009-06-25.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.