[ https://issues.apache.org/jira/browse/HIVE-2426?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13098500#comment-13098500 ]
jirapos...@reviews.apache.org commented on HIVE-2426: ----------------------------------------------------- ----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/1732/ ----------------------------------------------------------- Review request for hive. Summary ------- HIVE-2426 patch 3 This addresses bug HIVE-2426. https://issues.apache.org/jira/browse/HIVE-2426 Diffs ----- http://svn.apache.org/repos/asf/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/UnparseTranslator.java 1165909 http://svn.apache.org/repos/asf/hive/trunk/ql/src/test/queries/clientpositive/join_view.q PRE-CREATION http://svn.apache.org/repos/asf/hive/trunk/ql/src/test/results/clientpositive/join_view.q.out PRE-CREATION Diff: https://reviews.apache.org/r/1732/diff Testing ------- Thanks, John > Test that views with joins work properly > ---------------------------------------- > > Key: HIVE-2426 > URL: https://issues.apache.org/jira/browse/HIVE-2426 > Project: Hive > Issue Type: Test > Reporter: Charles Chen > Assignee: Charles Chen > Fix For: 0.9.0 > > Attachments: HIVE-2426.3.patch, HIVE-2426v2.patch > > > With the testcase > {noformat} > drop table invites; > drop table invites2; > create table invites (foo int, bar string) partitioned by (ds string); > create table invites2 (foo int, bar string) partitioned by (ds string); > set hive.mapred.mode=strict; > -- test join views: see HIVE-1989 > create view v as select invites.bar, invites2.foo, invites2.ds from invites > join invites2 on invites.ds=invites2.ds; > explain select * from v where ds='2011-09-01'; > drop view v; > drop table invites; > drop table invites2; > {noformat} > We should not have the partition pruner complain about invites.ds not having > a predicate because the predicate invites2.ds='2011-09-01' will be inferred > with the ppd transitivity optimization -- This message is automatically generated by JIRA. For more information on JIRA, see: http://www.atlassian.com/software/jira