You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Hudson (JIRA)" <ji...@apache.org> on 2013/01/09 11:31:37 UTC

[jira] [Commented] (HIVE-3226) ColumnPruner is not working on LateralView

    [ https://issues.apache.org/jira/browse/HIVE-3226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13548292#comment-13548292 ] 

Hudson commented on HIVE-3226:
------------------------------

Integrated in Hive-trunk-hadoop2 #54 (See [https://builds.apache.org/job/Hive-trunk-hadoop2/54/])
    HIVE-3226 ColumnPruner is not working on LateralView
(Navis via namit) (Revision 1376891)

     Result = ABORTED
namit : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1376891
Files : 
* /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/exec/LateralViewJoinOperator.java
* /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ColumnPruner.java
* /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ColumnPrunerProcCtx.java
* /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/optimizer/ColumnPrunerProcFactory.java
* /hive/trunk/ql/src/test/queries/clientpositive/lateral_view_cp.q
* /hive/trunk/ql/src/test/results/clientnegative/udf_assert_true.q.out
* /hive/trunk/ql/src/test/results/clientnegative/udf_assert_true2.q.out
* /hive/trunk/ql/src/test/results/clientpositive/lateral_view.q.out
* /hive/trunk/ql/src/test/results/clientpositive/lateral_view_cp.q.out
* /hive/trunk/ql/src/test/results/clientpositive/lateral_view_ppd.q.out
* /hive/trunk/ql/src/test/results/clientpositive/udtf_json_tuple.q.out
* /hive/trunk/ql/src/test/results/clientpositive/udtf_parse_url_tuple.q.out
* /hive/trunk/ql/src/test/results/clientpositive/udtf_stack.q.out
* /hive/trunk/ql/src/test/results/clientpositive/union_lateralview.q.out

                
> ColumnPruner is not working on LateralView
> ------------------------------------------
>
>                 Key: HIVE-3226
>                 URL: https://issues.apache.org/jira/browse/HIVE-3226
>             Project: Hive
>          Issue Type: Bug
>          Components: Query Processor
>    Affects Versions: 0.10.0
>            Reporter: Navis
>            Assignee: Navis
>             Fix For: 0.10.0
>
>         Attachments: HIVE-3226.1.patch.txt, HIVE-3226.2.patch.txt
>
>
> Column pruning is not applied to LVJ and SEL operator, which makes exceptions at various stages. For example,
> {noformat}
> drop table array_valued_src;
> create table array_valued_src (key string, value array<string>);
> insert overwrite table array_valued_src select key, array(value) from src;
> select sum(val) from (select a.key as key, b.value as array_val from src a join array_valued_src b on a.key=b.key) i lateral view explode (array_val) c as val;
> ... 9 more
> Caused by: java.lang.RuntimeException: Reduce operator initialization failed
> 	at org.apache.hadoop.hive.ql.exec.ExecReducer.configure(ExecReducer.java:157)
> 	... 14 more
> Caused by: java.lang.RuntimeException: cannot find field _col0 from [0:_col5]
> 	at org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils.getStandardStructFieldRef(ObjectInspectorUtils.java:345)
> 	at org.apache.hadoop.hive.serde2.objectinspector.StandardStructObjectInspector.getStructFieldRef(StandardStructObjectInspector.java:143)
> 	at org.apache.hadoop.hive.ql.exec.ExprNodeColumnEvaluator.initialize(ExprNodeColumnEvaluator.java:57)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initEvaluators(Operator.java:896)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initEvaluatorsAndReturnStruct(Operator.java:922)
> 	at org.apache.hadoop.hive.ql.exec.SelectOperator.initializeOp(SelectOperator.java:60)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:357)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:433)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initializeChildren(Operator.java:389)
> 	at org.apache.hadoop.hive.ql.exec.JoinOperator.initializeOp(JoinOperator.java:62)
> 	at org.apache.hadoop.hive.ql.exec.Operator.initialize(Operator.java:357)
> 	at org.apache.hadoop.hive.ql.exec.ExecReducer.configure(ExecReducer.java:150)
> {noformat}

--
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