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

hongze pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new d1336c20e8 [HOTFIX][PR-10695][CH] Fix compile error for the CH backend 
(#10718)
d1336c20e8 is described below

commit d1336c20e8259e451a7d9305e1982117f787f1b8
Author: Zhichao Zhang <[email protected]>
AuthorDate: Tue Sep 16 14:25:52 2025 +0800

    [HOTFIX][PR-10695][CH] Fix compile error for the CH backend (#10718)
---
 .github/workflows/clickhouse_be_trigger.yml                       | 4 ++++
 backends-clickhouse/pom.xml                                       | 8 +++++++-
 .../main/scala/org/apache/gluten/component/CHDeltaComponent.scala | 4 ++--
 3 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/clickhouse_be_trigger.yml 
b/.github/workflows/clickhouse_be_trigger.yml
index fbc3eac863..077d69d847 100644
--- a/.github/workflows/clickhouse_be_trigger.yml
+++ b/.github/workflows/clickhouse_be_trigger.yml
@@ -30,6 +30,10 @@ on:
       - 'shims/**'
       - 'tools/gluten-it/**'
       - 'cpp-ch/**'
+      - 'gluten-delta/**'
+      - 'gluten-ras/**'
+      - 'gluten-ui/**'
+      - 'gluten-kafka/**'
 
 jobs:
   add-comment:
diff --git a/backends-clickhouse/pom.xml b/backends-clickhouse/pom.xml
index 70ed07c504..1a496fa013 100644
--- a/backends-clickhouse/pom.xml
+++ b/backends-clickhouse/pom.xml
@@ -62,7 +62,7 @@
         <dependency>
           <groupId>org.slf4j</groupId>
           <artifactId>slf4j-api</artifactId>
-          <version>1.7.36</version>
+          <version>2.0.7</version>
           <scope>provided</scope>
         </dependency>
         <dependency>
@@ -217,6 +217,12 @@
           <artifactId>flink-test-utils</artifactId>
           <version>${iceberg.flinkConnector.version}</version>
           <scope>provided</scope>
+          <exclusions>
+            <exclusion>
+              <groupId>org.apache.logging.log4j</groupId>
+              <artifactId>log4j-slf4j-impl</artifactId>
+            </exclusion>
+          </exclusions>
         </dependency>
         <!-- flink not support scala 2.13 -->
         <dependency>
diff --git 
a/backends-clickhouse/src-delta/main/scala/org/apache/gluten/component/CHDeltaComponent.scala
 
b/backends-clickhouse/src-delta/main/scala/org/apache/gluten/component/CHDeltaComponent.scala
index a39c56003a..c4d8c8d8cb 100644
--- 
a/backends-clickhouse/src-delta/main/scala/org/apache/gluten/component/CHDeltaComponent.scala
+++ 
b/backends-clickhouse/src-delta/main/scala/org/apache/gluten/component/CHDeltaComponent.scala
@@ -18,8 +18,8 @@ package org.apache.gluten.component
 
 import org.apache.gluten.backendsapi.clickhouse.CHBackend
 import org.apache.gluten.config.GlutenConfig
-import org.apache.gluten.execution.{OffloadDeltaFilter, OffloadDeltaNode, 
OffloadDeltaProject}
-import org.apache.gluten.extension.DeltaPostTransformRules
+import org.apache.gluten.execution.OffloadDeltaNode
+import org.apache.gluten.extension.{DeltaPostTransformRules, 
OffloadDeltaFilter, OffloadDeltaProject}
 import org.apache.gluten.extension.columnar.enumerated.RasOffload
 import org.apache.gluten.extension.columnar.heuristic.HeuristicTransform
 import org.apache.gluten.extension.columnar.validator.Validators


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to