Repository: spark Updated Branches: refs/heads/branch-1.6 f0c98a60f -> 6ce3dd940
[SPARK-12682][SQL][HOT-FIX] Fix test compilation Author: Yin Huai <[email protected]> Closes #10925 from yhuai/branch-1.6-hot-fix. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/6ce3dd94 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/6ce3dd94 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/6ce3dd94 Branch: refs/heads/branch-1.6 Commit: 6ce3dd940def9257982d556cd3adf307fc2fe8a4 Parents: f0c98a6 Author: Yin Huai <[email protected]> Authored: Tue Jan 26 08:34:10 2016 -0800 Committer: Yin Huai <[email protected]> Committed: Tue Jan 26 08:34:10 2016 -0800 ---------------------------------------------------------------------- .../org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/6ce3dd94/sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala ---------------------------------------------------------------------- diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala index 2061d2c..cd83178 100644 --- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala +++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/MetastoreDataSourcesSuite.scala @@ -854,7 +854,6 @@ class MetastoreDataSourcesSuite extends QueryTest with SQLTestUtils with TestHiv tableIdent = TableIdentifier("not_skip_hive_metadata"), userSpecifiedSchema = Some(schema), partitionColumns = Array.empty[String], - bucketSpec = None, provider = "parquet", options = Map("path" -> "just a dummy path", "skipHiveMetadata" -> "false"), isExternal = false) @@ -868,7 +867,6 @@ class MetastoreDataSourcesSuite extends QueryTest with SQLTestUtils with TestHiv tableIdent = TableIdentifier("skip_hive_metadata"), userSpecifiedSchema = Some(schema), partitionColumns = Array.empty[String], - bucketSpec = None, provider = "parquet", options = Map("path" -> "just a dummy path", "skipHiveMetadata" -> "true"), isExternal = false) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
