This is an automated email from the ASF dual-hosted git repository.
zhangzc 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 e30b63553a [GLUTEN-7465][CH] Fix compile error 'Unable to locate class
corresponding to inner class entry for BuilderParent in owner
com.google.protobuf.AbstractMessage' (#7466)
e30b63553a is described below
commit e30b63553a7f3f320c6cd765ed24e6e918b4c755
Author: Zhichao Zhang <[email protected]>
AuthorDate: Fri Oct 11 09:23:53 2024 +0800
[GLUTEN-7465][CH] Fix compile error 'Unable to locate class corresponding
to inner class entry for BuilderParent in owner
com.google.protobuf.AbstractMessage' (#7466)
* [GLUTEN-7465][CH] Fix compile error 'Unable to locate class corresponding
to inner class entry for BuilderParent in owner
com.google.protobuf.AbstractMessage'
There is an compile error 'Unable to locate class corresponding to inner
class entry for BuilderParent in owner com.google.protobuf.AbstractMessage'
occured randomly, because there is a protobuf jar conflict.
Close #7465.
---
backends-clickhouse/pom.xml | 4 ++++
cpp-ch/clickhouse.version | 2 +-
pom.xml | 24 ++++++++++++++++++++++++
3 files changed, 29 insertions(+), 1 deletion(-)
diff --git a/backends-clickhouse/pom.xml b/backends-clickhouse/pom.xml
index 1bae288861..caa8136991 100644
--- a/backends-clickhouse/pom.xml
+++ b/backends-clickhouse/pom.xml
@@ -166,6 +166,10 @@
<artifactId>hadoop-hdfs</artifactId>
<groupId>org.apache.hadoop</groupId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
diff --git a/cpp-ch/clickhouse.version b/cpp-ch/clickhouse.version
index e233c8003b..6057691214 100644
--- a/cpp-ch/clickhouse.version
+++ b/cpp-ch/clickhouse.version
@@ -1,3 +1,3 @@
CH_ORG=Kyligence
CH_BRANCH=rebase_ch/20241010
-CH_COMMIT=9ed04076458
\ No newline at end of file
+CH_COMMIT=3e57eb5c17e
diff --git a/pom.xml b/pom.xml
index 642c825a5a..439f12b453 100644
--- a/pom.xml
+++ b/pom.xml
@@ -629,6 +629,10 @@
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -641,6 +645,10 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client-runtime</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -677,6 +685,10 @@
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -723,6 +735,10 @@
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -747,6 +763,10 @@
<groupId>org.apache.arrow</groupId>
<artifactId>*</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
<type>test-jar</type>
<scope>test</scope>
@@ -781,6 +801,10 @@
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
</exclusion>
+ <exclusion>
+ <artifactId>protobuf-java</artifactId>
+ <groupId>com.google.protobuf</groupId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]