You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Wenchen Fan (JIRA)" <ji...@apache.org> on 2015/04/26 13:14:38 UTC

[jira] [Created] (SPARK-7153) support Long type ordinal in GetItem

Wenchen Fan created SPARK-7153:
----------------------------------

             Summary: support Long type ordinal in GetItem
                 Key: SPARK-7153
                 URL: https://issues.apache.org/jira/browse/SPARK-7153
             Project: Spark
          Issue Type: Bug
          Components: SQL
            Reporter: Wenchen Fan


In GetItem, we will cast the ordinal into Int first. However, if the ordinal is Long type, execution will fail even the value of ordinal meets the requirement. 
{code}
test("get item") {
  jsonRDD(sparkContext.makeRDD(
    """{"a": [1,2,3], "b": 2}""" :: Nil)).registerTempTable("t")
  checkAnswer(sql("SELECT a[b] FROM t"), Row(3))
}
{code}
This test will fail as "b" is inferred as Long type.



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