Skip to content

Commit

Permalink
master test
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 19, 2024
1 parent 24328d1 commit 5cca294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/http/http_channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void HttpChannel::send_files(HttpRequest* request, const std::string& root_dir,
VLOG_DEBUG << "http channel send file " << file_path << ", size: " << file_size;

evbuffer_add_printf(evb.get(), "File-Name: %s\r\n", file.c_str());
evbuffer_add_printf(evb.get(), "Content-Length: %ld\r\n", file_size);
evbuffer_add_printf(evb.get(), "Content-Length: %" PRIi64 "\r\n", file_size);
evbuffer_add_printf(evb.get(), "\r\n");
if (file_size > 0) {
evbuffer_add_file(evb.get(), fd, 0, file_size);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ suite("test_aggregate_collect") {
"""

order_qt_select """
-- is master has core?
SELECT
size(collect_list(c_bool,1)),
size(collect_list(c_tinyint,1)),
Expand Down

0 comments on commit 5cca294

Please sign in to comment.