Repository: spark Updated Branches: refs/heads/master 39d3bc62a -> f0bba7447
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 <[email protected]> Closes #12565 from rxin/test-flaky. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f0bba744 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f0bba744 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f0bba744 Branch: refs/heads/master Commit: f0bba7447f7f9e5bcc4e029e0a74742880798546 Parents: 39d3bc6 Author: Reynold Xin <[email protected]> Authored: Sat Apr 23 11:11:48 2016 -0700 Committer: Reynold Xin <[email protected]> Committed: Sat Apr 23 11:11:48 2016 -0700 ---------------------------------------------------------------------- .../org/apache/spark/sql/hive/execution/SQLQuerySuite.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/f0bba744/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala ---------------------------------------------------------------------- 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 0ecc980..dd55d91 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") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
