This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch dev-1.0.0 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.
from 0726a43 [fix](be-ut) Fix unused-but-set-variable errors. (#8211) new d8b1065 [fix](mem-pool) fix bug that mem pool failed to allocate in ASAN mode (#8216) new 061e344 [Bug][Vectorized] fix bitmap_min(empty) not return null (#8190) new d3b9bb2 [Function] Refactor the function code of log (#8199) new e7233de [fix](load) Fix InsertStmt prepareExpressions (#8112) new b45a100 [git] Ignore all the .flattened-pom.xml files (#8197) new c302179 [Feature][array-type]add proto for complex data type ARRAY (#8212) The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .gitignore | 8 +- be/src/exprs/math_functions.cpp | 12 +- be/src/olap/rowset/column_reader.h | 1 - be/src/runtime/mem_pool.h | 4 +- be/src/util/bitmap_value.h | 101 ++++----- .../vec/functions/function_always_not_nullable.h | 3 - be/src/vec/functions/function_binary_arithmetic.h | 7 + be/src/vec/functions/function_bitmap.cpp | 51 +---- be/src/vec/functions/function_bitmap_min_or_max.h | 100 +++++++++ be/src/vec/functions/function_convert_tz.h | 3 - .../function_date_or_datetime_computation.cpp | 6 +- .../vec/functions/function_math_binary_float64.h | 248 --------------------- be/src/vec/functions/function_math_unary.h | 1 + ..._unary.h => function_math_unary_to_null_type.h} | 87 ++------ be/src/vec/functions/math.cpp | 131 ++++++----- be/src/vec/functions/modulo.cpp | 2 +- be/src/vec/io/io_helper.h | 1 + be/src/vec/utils/template_helpers.hpp | 3 - be/test/common/status_test.cpp | 2 - be/test/olap/schema_change_test.cpp | 224 ++++++++++++++----- be/test/plugin/CMakeLists.txt | 6 +- be/test/vec/function/function_math_test.cpp | 11 +- be/test/vec/function/function_test_util.h | 1 - .../java/org/apache/doris/analysis/InsertStmt.java | 2 +- .../doris/common/profile/PlanTreeBuilder.java | 7 +- .../org/apache/doris/planner/QueryPlanTest.java | 28 +++ gensrc/proto/data.proto | 5 +- gensrc/script/doris_builtins_functions.py | 12 +- 28 files changed, 502 insertions(+), 565 deletions(-) create mode 100644 be/src/vec/functions/function_bitmap_min_or_max.h delete mode 100644 be/src/vec/functions/function_math_binary_float64.h copy be/src/vec/functions/{function_math_unary.h => function_math_unary_to_null_type.h} (57%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org