dongjoon-hyun commented on code in PR #43629:
URL: https://github.com/apache/spark/pull/43629#discussion_r1387340391
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -2671,6 +2671,16 @@ object SQLConf {
.booleanConf
.createWithDefault(false)
+ val ANALYZE_PARTITION_STATS_ENABLED =
+ buildConf("spark.sql.statistics.update.partitionStats.enabled")
Review Comment:
1. Do we have other configurations under `spark.sql.statistics.update.*`? We
should not add a new namespace for a single configuration. Shall we rename like
the following?
```
- spark.sql.statistics.update.partitionStats.enabled
+ spark.sql.statistics.updatePartitionStats.enabled
```
2. Also, the current config name looks too general. Can we revise the config
name to give some idea about `ANALYZE TABLE` syntax?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]