This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new b871a576722 [fix](compile) failed on MacOS because size_t is not
uint64_t on MacOS (#39296)
b871a576722 is described below
commit b871a576722cb2353691f7abc7271616acdd200b
Author: morrySnow <[email protected]>
AuthorDate: Wed Aug 14 10:26:13 2024 +0800
[fix](compile) failed on MacOS because size_t is not uint64_t on MacOS
(#39296)
intro by #38954
---
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 00ca7c58ed7..3368be9ecb0 100644
--- a/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h
+++ b/be/src/vec/aggregate_functions/aggregate_function_window_funnel.h
@@ -373,7 +373,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: [email protected]
For additional commands, e-mail: [email protected]