-
- Downloads
[SPARK-17369][SQL] MetastoreRelation toJSON throws AssertException due to missing otherCopyArgs
## What changes were proposed in this pull request? `TreeNode.toJSON` requires a subclass to explicitly override otherCopyArgs to include currying construction arguments, otherwise it reports AssertException telling that the construction argument values' count doesn't match the construction argument names' count. For class `MetastoreRelation`, it has a currying construction parameter `client: HiveClient`, but Spark forgets to add it to the list of otherCopyArgs. ## How was this patch tested? Unit tests. Author: Sean Zhong <seanzhong@databricks.com> Closes #14928 from clockfly/metastore_relation_toJSON.
Showing
- sql/hive/src/main/scala/org/apache/spark/sql/hive/MetastoreRelation.scala 1 addition, 1 deletion...n/scala/org/apache/spark/sql/hive/MetastoreRelation.scala
- sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreRelationSuite.scala 39 additions, 0 deletions...la/org/apache/spark/sql/hive/MetastoreRelationSuite.scala
Please register or sign in to comment