dongjoon-hyun commented on a change in pull request #31958:
URL: https://github.com/apache/spark/pull/31958#discussion_r602918244
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
##########
@@ -838,6 +838,13 @@ object SQLConf {
.intConf
.createWithDefault(4096)
+ val ORC_VECTORIZED_READER_NESTED_COLUMN_ENABLED =
+ buildConf("spark.sql.orc.enableNestedColumnVectorizedReader")
+ .doc("Enables vectorized orc decoding for nested column.")
+ .version("3.2.0")
+ .booleanConf
+ .createWithDefault(true)
Review comment:
To be safe, I'd recommend to start with `false` at Apache Spark 3.2.
Then, you can switch it to `true` at Apache Spark 3.3.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]