viirya commented on code in PR #1076: URL: https://github.com/apache/datafusion-comet/pull/1076#discussion_r1837300980
########## common/src/main/scala/org/apache/comet/CometConf.scala: ########## @@ -77,6 +77,15 @@ object CometConf extends ShimCometConf { .booleanConf .createWithDefault(true) + val COMET_FULL_NATIVE_SCAN_ENABLED: ConfigEntry[Boolean] = conf( + "spark.comet.native.scan.enabled") + .doc( + "Whether to enable the fully native scan. When this is turned on, Spark will use Comet to " + + "read supported data sources (currently only Parquet is supported natively)." + + " By default, this config is true.") + .booleanConf + .createWithDefault(true) Review Comment: I added a similar config locally. 🙂 -- 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. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org