aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2015-01-14 09:47:30 -0800
committerReynold Xin <rxin@databricks.com>2015-01-14 09:47:30 -0800
commit81f72a0df2250debe8a6a0773d809d8c42eeabb9 (patch)
tree542c8c5da8c3793a3dc80aaabd8ca784cb4993a1 /sql/hive/src/test
parenta3f7421b42f45e39f3e53679188e4eae2ed1f208 (diff)
downloadspark-81f72a0df2250debe8a6a0773d809d8c42eeabb9.tar.gz
spark-81f72a0df2250debe8a6a0773d809d8c42eeabb9.tar.bz2
spark-81f72a0df2250debe8a6a0773d809d8c42eeabb9.zip
[SPARK-5211][SQL]Restore HiveMetastoreTypes.toDataType
jira: https://issues.apache.org/jira/browse/SPARK-5211 Author: Yin Huai <yhuai@databricks.com> Closes #4026 from yhuai/SPARK-5211 and squashes the following commits: 15ee32b [Yin Huai] Remove extra line. c6c1651 [Yin Huai] Get back HiveMetastoreTypes.toDataType.
Diffstat (limited to 'sql/hive/src/test')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala5
1 files changed, 1 insertions, 4 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala
index fa6905f31f..aad48ada52 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala
@@ -19,7 +19,6 @@ package org.apache.spark.sql.hive
import org.scalatest.FunSuite
-import org.apache.spark.sql.sources.DDLParser
import org.apache.spark.sql.test.ExamplePointUDT
import org.apache.spark.sql.types.StructType
@@ -28,9 +27,7 @@ class HiveMetastoreCatalogSuite extends FunSuite {
test("struct field should accept underscore in sub-column name") {
val metastr = "struct<a: int, b_1: string, c: string>"
- val ddlParser = new DDLParser
-
- val datatype = ddlParser.parseType(metastr)
+ val datatype = HiveMetastoreTypes.toDataType(metastr)
assert(datatype.isInstanceOf[StructType])
}