[jira] [Assigned] (SPARK-17369) MetastoreRelation toJSON throws exception
[ https://issues.apache.org/jira/browse/SPARK-17369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Apache Spark reassigned SPARK-17369: Assignee: Sean Zhong (was: Apache Spark) > 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-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org
[jira] [Assigned] (SPARK-17369) MetastoreRelation toJSON throws exception
[ https://issues.apache.org/jira/browse/SPARK-17369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Apache Spark reassigned SPARK-17369: Assignee: Apache Spark (was: Sean Zhong) > 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: Apache Spark >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-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org
[jira] [Assigned] (SPARK-17369) MetastoreRelation toJSON throws exception
[ https://issues.apache.org/jira/browse/SPARK-17369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Apache Spark reassigned SPARK-17369: Assignee: (was: Apache Spark) > 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 >Priority: Minor > > 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-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org
[jira] [Assigned] (SPARK-17369) MetastoreRelation toJSON throws exception
[ https://issues.apache.org/jira/browse/SPARK-17369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Apache Spark reassigned SPARK-17369: Assignee: Apache Spark > 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: Apache Spark >Priority: Minor > > 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-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org