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

dataroaring pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git

commit fdd71aed86abd7ed3e80cb83dd9e94dbaaf87faa
Author: wuwenchi <wuwenchi...@hotmail.com>
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: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to