From 64006a64658874429c646d96a6770f5e8785bee0 Mon Sep 17 00:00:00 2001 From: BiteTheDDDDt Date: Wed, 22 Oct 2025 13:22:26 +0800 Subject: [PATCH] fix compile fail coz base64_encode_part_num --- be/src/io/fs/azure_obj_storage_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/io/fs/azure_obj_storage_client.cpp b/be/src/io/fs/azure_obj_storage_client.cpp index 387bd0e1859521..d27df50350fc39 100644 --- a/be/src/io/fs/azure_obj_storage_client.cpp +++ b/be/src/io/fs/azure_obj_storage_client.cpp @@ -56,7 +56,7 @@ std::string wrap_object_storage_path_msg(const doris::io::ObjectStoragePathOptio auto base64_encode_part_num(int part_num) { uint8_t buf[4]; - encode_fixed32_le(buf, static_cast(part_num)); + doris::encode_fixed32_le(buf, static_cast(part_num)); return Aws::Utils::HashingUtils::Base64Encode({buf, sizeof(buf)}); }