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 00771dc commit b6ba0ddCopy full SHA for b6ba0dd
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
@@ -442,7 +442,8 @@ object SQLConf {
442
val PARQUET_RECORD_FILTER_ENABLED = buildConf("spark.sql.parquet.recordLevelFilter.enabled")
443
.doc("If true, enables Parquet's native record-level filtering using the pushed down " +
444
"filters. This configuration only has an effect when 'spark.sql.parquet.filterPushdown' " +
445
- "is enabled.")
+ "is enabled and the vectorized reader is not used. You can ensure the vectorized reader " +
446
+ "is not used by setting 'spark.sql.parquet.enableVectorizedReader' to false.")
447
.booleanConf
448
.createWithDefault(false)
449
0 commit comments