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)}); }