This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new d325b43cf48 [bugfix](paimon)adding dependencies for `clang` (#37512)
d325b43cf48 is described below
commit d325b43cf48a436f0f15596df43f570e0dff43e5
Author: wuwenchi <[email protected]>
AuthorDate: Tue Jul 9 22:27:35 2024 +0800
[bugfix](paimon)adding dependencies for `clang` (#37512)
## Proposed changes
When paimon uses the `hms` type catalog and reads data in jni mode, it
needs to use the `org.apache.commons.lang.StringUtils` class.
(This problem is not tested in the pipeline environment because the
pipeline environment automatically generates the
`java-udf-case-jar-with-dependencies.jar` for testing, which contains
the `lang` package.)
---
fe/be-java-extensions/preload-extensions/pom.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/fe/be-java-extensions/preload-extensions/pom.xml
b/fe/be-java-extensions/preload-extensions/pom.xml
index 235a3f270f9..7910cec0d58 100644
--- a/fe/be-java-extensions/preload-extensions/pom.xml
+++ b/fe/be-java-extensions/preload-extensions/pom.xml
@@ -207,6 +207,11 @@ under the License.
<artifactId>paimon-oss</artifactId>
<version>${paimon.version}</version>
</dependency>
+ <dependency>
+ <groupId>commons-lang</groupId>
+ <artifactId>commons-lang</artifactId>
+ <version>${commons-lang.version}</version>
+ </dependency>
</dependencies>
<build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]