cloud-fan commented on code in PR #50457: URL: https://github.com/apache/spark/pull/50457#discussion_r2020843673
########## sql/core/src/main/scala/org/apache/spark/sql/execution/stat/StatFunctions.scala: ########## @@ -98,7 +98,8 @@ object StatFunctions extends Logging { sum2: Array[QuantileSummaries]): Array[QuantileSummaries] = { sum1.zip(sum2).map { case (s1, s2) => s1.compress().merge(s2.compress()) } } - val summaries = df.select(columns: _*).rdd.treeAggregate(emptySummaries)(apply, merge) + val summaries = df.select(columns: _*).materializedRdd + .treeAggregate(emptySummaries)(apply, merge) Review Comment: not directly related but also a small followup: the internal RDD query should not trigger a query execution event. -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org