aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-05-30 22:47:58 -0700
committerReynold Xin <rxin@databricks.com>2016-05-30 22:47:58 -0700
commit675921040ee4802aa9914457de62af746bc3657d (patch)
treecf9f293c9c3b489551764a5edbd981b290ae83cc /sql/hive
parent5b21139dbf3bd09cb3a590bd0ffb857ea92dc23c (diff)
downloadspark-675921040ee4802aa9914457de62af746bc3657d.tar.gz
spark-675921040ee4802aa9914457de62af746bc3657d.tar.bz2
spark-675921040ee4802aa9914457de62af746bc3657d.zip
[SPARK-15638][SQL] Audit Dataset, SparkSession, and SQLContext
## What changes were proposed in this pull request? This patch contains a list of changes as a result of my auditing Dataset, SparkSession, and SQLContext. The patch audits the categorization of experimental APIs, function groups, and deprecations. For the detailed list of changes, please see the diff. ## How was this patch tested? N/A Author: Reynold Xin <rxin@databricks.com> Closes #13370 from rxin/SPARK-15638.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveDDLCommandSuite.scala8
1 files changed, 3 insertions, 5 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveDDLCommandSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveDDLCommandSuite.scala
index 96c8fa6b70..3297a6f6c3 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveDDLCommandSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveDDLCommandSuite.scala
@@ -17,8 +17,6 @@
package org.apache.spark.sql.hive
-import org.apache.hadoop.hive.serde.serdeConstants
-
import org.apache.spark.sql.AnalysisException
import org.apache.spark.sql.catalyst.analysis.UnresolvedAttribute
import org.apache.spark.sql.catalyst.catalog.{CatalogColumn, CatalogTable, CatalogTableType}
@@ -37,9 +35,9 @@ class HiveDDLCommandSuite extends PlanTest {
private def extractTableDesc(sql: String): (CatalogTable, Boolean) = {
parser.parsePlan(sql).collect {
- case CreateTableCommand(desc, allowExisting) => (desc, allowExisting)
- case CreateTableAsSelectLogicalPlan(desc, _, allowExisting) => (desc, allowExisting)
- case CreateViewCommand(desc, _, allowExisting, _, _, _) => (desc, allowExisting)
+ case c: CreateTableCommand => (c.table, c.ifNotExists)
+ case c: CreateTableAsSelectLogicalPlan => (c.tableDesc, c.allowExisting)
+ case c: CreateViewCommand => (c.tableDesc, c.allowExisting)
}.head
}