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 dd55d91ec513c8de751c716223889121fb8dd841..0ecc9807b21a4200f730e06d32b4ce77c818caae 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")