You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Ram Sriharsha (JIRA)" <ji...@apache.org> on 2015/09/15 21:01:45 UTC

[jira] [Created] (SPARK-10623) turning on predicate pushdown throws nonsuch element exception when RDD is empty

Ram Sriharsha created SPARK-10623:
-------------------------------------

             Summary: turning on predicate pushdown throws nonsuch element exception when RDD is empty 
                 Key: SPARK-10623
                 URL: https://issues.apache.org/jira/browse/SPARK-10623
             Project: Spark
          Issue Type: Bug
            Reporter: Ram Sriharsha


Turning on predicate pushdown for ORC datasources results in a NoSuchElementException:

scala> val df = sqlContext.sql("SELECT name FROM people WHERE age < 15")
df: org.apache.spark.sql.DataFrame = [name: string]

scala> sqlContext.setConf("spark.sql.orc.filterPushdown", "true")

scala> df.explain
== Physical Plan ==
java.util.NoSuchElementException

Disabling the pushdown makes things work again:

scala> sqlContext.setConf("spark.sql.orc.filterPushdown", "false")

scala> df.explain
== Physical Plan ==
Project [name#6]
 Filter (age#7 < 15)
  Scan OrcRelation[file:/home/mydir/spark-1.5.0-SNAPSHOT/test/people][name#6,age#7]



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org