Skip to content

Commit 7b12415

Browse files
committed
Ignore test cases for string and binary column filter push-down
1 parent ce71cca commit 7b12415

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFilterSuite.scala

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)