Skip to content

Commit 01509bf

Browse files
committed
Comments
1 parent 85a7cf6 commit 01509bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,11 @@ class ParquetFilterSuite extends QueryTest with ParquetTest with SharedSQLContex
350350
df
351351
.queryExecution
352352
.executedPlan.asInstanceOf[org.apache.spark.sql.execution.Filter]
353-
.child.
354-
execute()
353+
.child
354+
.execute()
355355

356356
// The result should be single row.
357-
// When a filter is pushed to Parquet, Parquet can apply it to eveyr row.
357+
// When a filter is pushed to Parquet, Parquet can apply it to every row.
358358
// So, we can check the number of rows returned from the Parquet
359359
// to make sure our filter pushdown work.
360360
assert(childRDD.count == 1)

0 commit comments

Comments
 (0)