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

[jira] [Reopened] (SPARK-17369) MetastoreRelation toJSON throws exception

     [ https://issues.apache.org/jira/browse/SPARK-17369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yin Huai reopened SPARK-17369:
------------------------------

> MetastoreRelation toJSON throws exception
> -----------------------------------------
>
>                 Key: SPARK-17369
>                 URL: https://issues.apache.org/jira/browse/SPARK-17369
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>            Reporter: Sean Zhong
>            Assignee: Sean Zhong
>            Priority: Minor
>             Fix For: 2.1.0
>
>
> MetastoreRelationSuite.toJSON now throws exception.
> test case:
> {code}
> package org.apache.spark.sql.hive
> import org.apache.spark.SparkFunSuite
> import org.apache.spark.sql.catalyst.TableIdentifier
> import org.apache.spark.sql.catalyst.catalog.{CatalogStorageFormat, CatalogTable, CatalogTableType}
> import org.apache.spark.sql.types.{IntegerType, StructField, StructType}
> class MetastoreRelationSuite extends SparkFunSuite {
>   test("makeCopy and toJSON should work") {
>     val table = CatalogTable(
>       identifier = TableIdentifier("test", Some("db")),
>       tableType = CatalogTableType.VIEW,
>       storage = CatalogStorageFormat.empty,
>       schema = StructType(StructField("a", IntegerType, true) :: Nil))
>     val relation = MetastoreRelation("db", "test")(table, null, null)
>     // No exception should be thrown
>     relation.makeCopy(Array("db", "test"))
>     // No exception should be thrown
>     relation.toJSON
>   }
> }
> {code}



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