From bc71b9e033414a15277e8cc4f1537db1cde0fb25 Mon Sep 17 00:00:00 2001 From: morningman Date: Mon, 3 Nov 2025 13:05:19 +0800 Subject: [PATCH] [feat](hdfs) upgrade libhdfs to 3.4.2 --- be/CMakeLists.txt | 2 +- be/src/io/fs/hdfs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/be/CMakeLists.txt b/be/CMakeLists.txt index de70e356ef45c3..21b55850e83ed3 100644 --- a/be/CMakeLists.txt +++ b/be/CMakeLists.txt @@ -544,7 +544,7 @@ set(COMMON_THIRDPARTY if ((ARCH_AMD64 OR ARCH_AARCH64) AND OS_LINUX) add_library(hadoop_hdfs STATIC IMPORTED) - set_target_properties(hadoop_hdfs PROPERTIES IMPORTED_LOCATION ${THIRDPARTY_DIR}/lib/hadoop_hdfs/native/libhdfs.a) + set_target_properties(hadoop_hdfs PROPERTIES IMPORTED_LOCATION ${THIRDPARTY_DIR}/lib/hadoop_hdfs_3_4/native/libhdfs.a) set(COMMON_THIRDPARTY ${COMMON_THIRDPARTY} diff --git a/be/src/io/fs/hdfs.h b/be/src/io/fs/hdfs.h index c260ff9dea4793..b9d55e2e14ffab 100644 --- a/be/src/io/fs/hdfs.h +++ b/be/src/io/fs/hdfs.h @@ -18,7 +18,7 @@ #pragma once #ifdef USE_HADOOP_HDFS -#include // IWYU pragma: export +#include // IWYU pragma: export #else #include // IWYU pragma: export #endif