File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,8 @@ class ParquetFilterSuite extends QueryTest with ParquetTest with SharedSQLContex
229229 }
230230 }
231231
232- test(" filter pushdown - string" ) {
232+ // See SPARK-17213: https://issues.apache.org/jira/browse/SPARK-17213
233+ ignore(" filter pushdown - string" ) {
233234 withParquetDataFrame((1 to 4 ).map(i => Tuple1 (i.toString))) { implicit df =>
234235 checkFilterPredicate(' _1 .isNull, classOf [Eq [_]], Seq .empty[Row ])
235236 checkFilterPredicate(
@@ -257,7 +258,8 @@ class ParquetFilterSuite extends QueryTest with ParquetTest with SharedSQLContex
257258 }
258259 }
259260
260- test(" filter pushdown - binary" ) {
261+ // See SPARK-17213: https://issues.apache.org/jira/browse/SPARK-17213
262+ ignore(" filter pushdown - binary" ) {
261263 implicit class IntToBinary (int : Int ) {
262264 def b : Array [Byte ] = int.toString.getBytes(StandardCharsets .UTF_8 )
263265 }
You can’t perform that action at this time.
0 commit comments