This is an automated email from the ASF dual-hosted git repository. kxiao pushed a change to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
from c1b8c23ee0 [Fix](planner) fix to_date failed in create table as select (#23613) new 9bf7a0e955 [function](bitmap) support bitmap_to_base64 and bitmap_from_base64 (#23759) new 444836f1ae [improvement](config) add a specific be config for segment_cache_capacity (#23701) new 9ec056675c [Fix](vscanner) remove TEMP column in block after filter (#23778) The 3 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: be/src/common/config.cpp | 3 + be/src/common/config.h | 3 + be/src/runtime/exec_env_init.cpp | 7 +- be/src/util/bitmap_value.h | 23 ++- be/src/vec/exec/scan/vscanner.cpp | 6 + be/src/vec/functions/function_bitmap.cpp | 106 +++++++++++++ be/test/vec/function/function_bitmap_test.cpp | 171 +++++++++++++++++++++ be/test/vec/function/function_test_util.h | 15 ++ docs/en/docs/admin-manual/config/be-config.md | 12 +- docs/zh-CN/docs/admin-manual/config/be-config.md | 12 +- .../doris/catalog/BuiltinScalarFunctions.java | 4 + ...BitmapFromString.java => BitmapFromBase64.java} | 12 +- .../{BitmapToString.java => BitmapToBase64.java} | 14 +- .../expressions/visitor/ScalarFunctionVisitor.java | 10 ++ gensrc/script/doris_builtins_functions.py | 3 + .../bitmap_functions/test_bitmap_function.out | 117 +++++++++----- .../bitmap_functions/test_bitmap_function.groovy | 78 ++++++++++ 17 files changed, 527 insertions(+), 69 deletions(-) copy fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/{BitmapFromString.java => BitmapFromBase64.java} (88%) copy fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/{BitmapToString.java => BitmapToBase64.java} (85%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org