This is an automated email from the ASF dual-hosted git repository.

richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new db339c65 Fix typo in AuronConverters (#1380)
db339c65 is described below

commit db339c6514293aa26ea1ca8a7e3a640d3c549908
Author: guixiaowen <[email protected]>
AuthorDate: Tue Sep 30 20:20:47 2025 +0800

    Fix typo in AuronConverters (#1380)
    
    * Fix typo in AuronConverters
    
    * Fix typo in AuronConverters
    
    ---------
    
    Co-authored-by: guihuawen <[email protected]>
---
 .../src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
 
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
index 9c6e68ab..dc2f8c72 100644
--- 
a/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
+++ 
b/spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala
@@ -750,7 +750,7 @@ object AuronConverters extends Logging {
 
     val isFinal = exec.requiredChildDistributionExpressions.isDefined &&
       exec.aggregateExpressions.forall(_.mode == Final)
-    if (isFinal) { // wraps with a projection to handle resutExpressions
+    if (isFinal) { // wraps with a projection to handle resultExpressions
       try {
         return Shims.get.createNativeProjectExec(exec.resultExpressions, 
nativeAggr)
       } catch {
@@ -807,7 +807,7 @@ object AuronConverters extends Logging {
 
     val isFinal = exec.requiredChildDistributionExpressions.isDefined &&
       exec.aggregateExpressions.forall(_.mode == Final)
-    if (isFinal) { // wraps with a projection to handle resutExpressions
+    if (isFinal) { // wraps with a projection to handle resultExpressions
       try {
         return Shims.get.createNativeProjectExec(exec.resultExpressions, 
nativeAggr)
       } catch {
@@ -861,7 +861,7 @@ object AuronConverters extends Logging {
 
     val isFinal = exec.requiredChildDistributionExpressions.isDefined &&
       exec.aggregateExpressions.forall(_.mode == Final)
-    if (isFinal) { // wraps with a projection to handle resutExpressions
+    if (isFinal) { // wraps with a projection to handle resultExpressions
       try {
         return Shims.get.createNativeProjectExec(exec.resultExpressions, 
nativeAggr)
       } catch {

Reply via email to