This is an automated email from the ASF dual-hosted git repository.
feiwang 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 38c0df9a remove duplicate isDebugEnabled (#1280)
38c0df9a is described below
commit 38c0df9a41d2f8102bc629472e65d6766b570187
Author: cxzl25 <[email protected]>
AuthorDate: Mon Sep 8 11:18:33 2025 +0800
remove duplicate isDebugEnabled (#1280)
---
.../src/main/scala/org/apache/spark/sql/auron/AuronConverters.scala | 4 +---
1 file changed, 1 insertion(+), 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 2449dbfd..9c6e68ab 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
@@ -386,9 +386,7 @@ object AuronConverters extends Logging {
def convertProjectExec(exec: ProjectExec): SparkPlan = {
val (projectList, child) = (exec.projectList, exec.child)
- if (log.isDebugEnabled) {
- logDebugPlanConversion(exec, Seq("projectExprs" ->
projectList.mkString("[", ", ", "]")))
- }
+ logDebugPlanConversion(exec, Seq("projectExprs" ->
projectList.mkString("[", ", ", "]")))
Shims.get.createNativeProjectExec(projectList,
addRenameColumnsExec(convertToNative(child)))
}