Github user dreamquster commented on the pull request:

    https://github.com/apache/spark/pull/5358#issuecomment-93274588
  
    What's wrong with  the code  in PruningSuite?
    
    ````scala
    createPruningTest("Column pruning - explode with aggregate",
        "SELECT name, sum(d) AS sumd FROM person LATERAL VIEW explode(data) d 
AS d GROUP BY name",
        Seq("name", "sumd"),
        Seq("name","data"),
        Seq.empty)
    
      createPruningTest("Column pruning - outer explode with limit",
        "SELECT name FROM person LATERAL VIEW OUTER explode(data) outd AS d" +
          " where  name < \"C\" limit 3",
        Seq("name"),
        Seq("name", "data"),
        Seq.empty)
    
      createPruningTest(s"Column pruning - select all without explode optimze - 
query test",
        "SELECT * FROM person LATERAL VIEW OUTER explode(data) outd AS d WHERE 
20 < age",
        Seq("name", "age", "data", "d"),
        Seq("name", "age", "data"),
        Seq.empty)
    `````
    
    jenkins report -> Error: FAILED: Execution Error, return code 1 from 
org.apache.hadoop.hive.ql.exec.mr.MapRedTask


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to