Skip to content

Commit 1532596

Browse files
Apply suggestions from code review
Co-authored-by: Shreyesh <shreyesh.arangath@gmail.com>
1 parent de76406 commit 1532596

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

spark-extension/src/main/java/org/apache/auron/spark/configuration/SparkAuronConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ public class SparkAuronConfiguration extends AuronConfiguration {
411411
.withDescription("Enable AggregateExec operation conversion to native Auron implementations.")
412412
.withDefaultValue(true);
413413

414-
public static final ConfigOption<Boolean> ENABLE_COALESEC = new SQLConfOption<>(Boolean.class)
414+
public static final ConfigOption<Boolean> ENABLE_COALESCE = new SQLConfOption<>(Boolean.class)
415415
.withKey("auron.enable.coalesce")
416416
.withCategory("Operator Supports")
417417
.withDescription("Enable CoalesceExec operation conversion to native Auron implementations.")

spark-extension/src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ object AuronConverters extends Logging {
202202
}
203203
convertedAgg
204204

205-
case e: CoalesceExec if enableCoalesec => // coalesec
205+
case e: CoalesceExec if enableCoalesce => // coalesce
206206
val convertedCoalesce = tryConvert(e, convertCoalesceExec)
207207
convertedCoalesce
208208

0 commit comments

Comments
 (0)