This is an automated email from the ASF dual-hosted git repository. panxiaolei pushed a commit to branch fix_1019 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 599c2dff41b880c344b904223792d1ee0664fe4c Author: BiteTheDDDDt <pxl...@qq.com> AuthorDate: Thu Oct 19 21:54:08 2023 +0800 fix to_quantile_state input type judge --- be/src/vec/functions/function_quantile_state.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/vec/functions/function_quantile_state.cpp b/be/src/vec/functions/function_quantile_state.cpp index 71409f93323..787931334a9 100644 --- a/be/src/vec/functions/function_quantile_state.cpp +++ b/be/src/vec/functions/function_quantile_state.cpp @@ -198,9 +198,9 @@ public: status = execute_internal<ColumnString, true>(column, data_type, column_result); } else if (nested_which.is_int64()) { status = execute_internal<ColumnInt64, true>(column, data_type, column_result); - } else if (which.is_float32()) { + } else if (nested_which.is_float32()) { status = execute_internal<ColumnFloat32, true>(column, data_type, column_result); - } else if (which.is_float64()) { + } else if (nested_which.is_float64()) { status = execute_internal<ColumnFloat64, true>(column, data_type, column_result); } else { return type_error(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org