You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Yang Wang (JIRA)" <ji...@apache.org> on 2016/10/10 06:04:20 UTC

[jira] [Created] (SPARK-17849) grouping set throws NPE

Yang Wang created SPARK-17849:
---------------------------------

             Summary: grouping set throws NPE
                 Key: SPARK-17849
                 URL: https://issues.apache.org/jira/browse/SPARK-17849
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 2.0.1, 2.0.0
            Reporter: Yang Wang


spark sql grouping sets throws NullPointerException.
This problem can be recreated using the following lines of code:
case class point(a:String, b:String, c:String)
val data = Seq(
  point("1","2","3"),
  point("4","5","6"),
  point("7","8","9")
)
sc.parallelize(data).toDF().registerTempTable("table")
spark.sql("select a, b, count(c) from table group by a, b GROUPING SETS (()) ").show()



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