aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-04-23 11:11:48 -0700
committerReynold Xin <rxin@databricks.com>2016-04-23 11:11:48 -0700
commitf0bba7447f7f9e5bcc4e029e0a74742880798546 (patch)
tree3ef0888907e85a8e49dad7adf398f573530300ac
parent39d3bc62a7ba16c646bed8d524cf9b929374a790 (diff)
downloadspark-f0bba7447f7f9e5bcc4e029e0a74742880798546.tar.gz
spark-f0bba7447f7f9e5bcc4e029e0a74742880798546.tar.bz2
spark-f0bba7447f7f9e5bcc4e029e0a74742880798546.zip
Turn script transformation back on.
## What changes were proposed in this pull request? (Please fill in changes proposed in this fix) ## How was this patch tested? (Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests) (If this patch involves UI changes, please attach a screenshot; otherwise, remove this) Author: Reynold Xin <rxin@databricks.com> Closes #12565 from rxin/test-flaky.
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
index 0ecc9807b2..dd55d91ec5 100644
--- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
+++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -1067,7 +1067,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
checkAnswer(df, Row("text inside layer 2") :: Nil)
}
- ignore("SPARK-10310: " +
+ test("SPARK-10310: " +
"script transformation using default input/output SerDe and record reader/writer") {
sqlContext
.range(5)
@@ -1086,7 +1086,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
(0 until 5).map(i => Row(i + "#")))
}
- ignore("SPARK-10310: script transformation using LazySimpleSerDe") {
+ test("SPARK-10310: script transformation using LazySimpleSerDe") {
sqlContext
.range(5)
.selectExpr("id AS a", "id AS b")