yiguolei commented on code in PR #53018:
URL: https://github.com/apache/doris/pull/53018#discussion_r2196250485
##########
be/src/vec/functions/function_bitmap.cpp:
##########
@@ -305,7 +305,8 @@ struct BitmapFromBase64 {
BitmapValue bitmap_val;
if (!bitmap_val.deserialize(decode_buff.data())) {
return Status::RuntimeError(
- fmt::format("bitmap_from_base64 decode failed:
base64: {}", src_str));
Review Comment:
不需要这么写, Status 这个类,自动带了fmt format的,直接写 "bitmap_from_base64 decode failed:
base64: {}",
std::string(src_str, src_size)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]