This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new ed76b0c5f52 [fix](compile) failed on MacOS because size_t is not uint64_t on MacOS (#39296) (#40720) ed76b0c5f52 is described below commit ed76b0c5f52bcce20a6d1d603af6d94b19ef8aef Author: camby <camby...@tencent.com> AuthorDate: Thu Sep 12 18:47:59 2024 +0800 [fix](compile) failed on MacOS because size_t is not uint64_t on MacOS (#39296) (#40720) pick #39296 to branch-2.1 Co-authored-by: morrySnow <101034200+morrys...@users.noreply.github.com> --- be/src/vec/aggregate_functions/aggregate_function_window_funnel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h b/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h index 5ba5a0a6475..8e3efb9c613 100644 --- a/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h +++ b/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h @@ -347,7 +347,7 @@ struct WindowFunnelState { read_var_int(mode, in); window_funnel_mode = static_cast<WindowFunnelMode>(mode); } - size_t data_bytes = 0; + uint64_t data_bytes = 0; read_var_uint(data_bytes, in); std::string buff; buff.resize(data_bytes); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org