aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-04-24 12:54:56 -0700
committerReynold Xin <rxin@databricks.com>2016-04-24 12:54:56 -0700
commit0c8e5332ff6a353a854a924ee7435708abfe0a52 (patch)
treeb4c65594e9fc9c2b1434500fbf4457a7f12a8450 /sql
parentf0f1a8afde285b5d19c841dacb090f658906c4fd (diff)
downloadspark-0c8e5332ff6a353a854a924ee7435708abfe0a52.tar.gz
spark-0c8e5332ff6a353a854a924ee7435708abfe0a52.tar.bz2
spark-0c8e5332ff6a353a854a924ee7435708abfe0a52.zip
Disable flaky script transformation test
Diffstat (limited to 'sql')
-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 dd55d91ec5..0ecc9807b2 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)
}
- test("SPARK-10310: " +
+ ignore("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 + "#")))
}
- test("SPARK-10310: script transformation using LazySimpleSerDe") {
+ ignore("SPARK-10310: script transformation using LazySimpleSerDe") {
sqlContext
.range(5)
.selectExpr("id AS a", "id AS b")