dongjoon-hyun commented on code in PR #57276:
URL: https://github.com/apache/spark/pull/57276#discussion_r3597677209


##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -2999,6 +2999,17 @@ object SQLConf {
     .booleanConf
     .createWithDefault(false)
 
+  val COMBINE_ADJACENT_AGGREGATION_ENABLED =
+    buildConf("spark.sql.execution.combineAdjacentAggregation")
+      .internal()
+      .doc("When true, combine adjacent aggregation with `Partial` and `Final` 
to `Complete` " +
+        "mode. This defaults to the value of 
`spark.sql.execution.replaceHashWithSortAgg` since " +
+        "combining adjacent aggregation subsumes the partial-and-final merge 
that " +
+        "`replaceHashWithSortAgg` used to perform on its own.")
+      .version("4.3.0")

Review Comment:
   To @wangyum . No, next feature release is `4.3.0` from `branch-4.x` after 3 
months from now (4.2.0 release).
   
   - https://spark.apache.org/versioning-policy.html
   
   > Spark 4.3.0 as the first quarterly feature release on the new train (for 
example, roughly three months after the 4.2.0 GA 
   
   In short, 4.3.0 on October 2026. 5.0.0 on Spring 2027.



-- 
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]

Reply via email to