We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a7cf6 commit 01509bfCopy full SHA for 01509bf
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFilterSuite.scala
@@ -350,11 +350,11 @@ class ParquetFilterSuite extends QueryTest with ParquetTest with SharedSQLContex
350
df
351
.queryExecution
352
.executedPlan.asInstanceOf[org.apache.spark.sql.execution.Filter]
353
- .child.
354
- execute()
+ .child
+ .execute()
355
356
// The result should be single row.
357
- // When a filter is pushed to Parquet, Parquet can apply it to eveyr row.
+ // When a filter is pushed to Parquet, Parquet can apply it to every row.
358
// So, we can check the number of rows returned from the Parquet
359
// to make sure our filter pushdown work.
360
assert(childRDD.count == 1)
0 commit comments