This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a change to branch auto-pick-67316-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


    omit 35d7d35de21 [fix](cloud) Prevent FDB CloudUT ASAN getentropy crash 
(#67316)
     add 34f34738b7c branch-4.1: [fix](function) Round Decimal values with zero 
decimal places #68010 (#68412)
     add 0b6480f544f branch-4.1: [fix](function) Fix decimal rounding overflow 
at scale boundaries #68251 (#68415)
     add e887c54c746 branch-4.1: [fix](function) Handle odd-byte IPv6 
truncation #68109 (#68414)
     add 518f5f6a8d6 branch-4.1: [fix](function) Split UTF-8 strings correctly 
with empty regexp #68020 (#68417)
     add 2c393e55f13 branch-4.1: [fix](function) Preserve NUL bytes in 
count-by-enum keys #67984 (#68419)
     add 3c53410236e branch-4.1: [fix](function) Handle zero-address IPv4 CIDR 
correctly #68081 (#68420)
     add 9e2aae70135 branch-4.1: [fix](function) Preserve NULL rows in IP range 
index results #68051 (#68421)
     add 854d5eae629 branch-4.1: [fix](function) Preserve NULL values in 
parse_data_size #67910 (#68413)
     add d86361815ec branch-4.1: [fix](function) Consider microseconds in week 
floor and ceil #67961 (#68416)
     add cd8a068482e branch-4.1: [fix](search) Validate ngram search gram 
number #67749 (#68418)
     add 0d0e1897b61 branch-4.1: [fix](be) Fix BIGINT conv overflow during base 
conversion #67872 (#68424)
     add 8039c3ccdc2 branch-4.1: [fix](agg) Align complex aggregate null 
ordering #67439 (#68422)
     add 4d085c13e12 branch-4.1: [fix](function) Fix MAKE_SET constant NULL 
handling #68274 (#68411)
     add 7f027bd474f branch-4.1: [fix](be) Preserve NULL propagation in date 
floor functions #67951 (#68423)
     add 6aae9865467 branch-4.1: [fix](function) Handle constant NULL arrays in 
array pushback #68380 (#68442)
     add 9c384e08d32 branch-4.1: [fix](be) Keep all samples when merging 
percentile states #68318 (#68475)
     add 129abd9f325 [fix](function) Revert incompatible IP range index 
backport (#68473)
     add 5dbd0f6fdcc branch-4.1: [improvement](be) Optimize pow squares with 
exact integer results #68258 (#68443)
     add ffd16d47e01 [fix](cloud) Prevent FDB CloudUT ASAN getentropy crash 
(#67316)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (35d7d35de21)
            \
             N -- N -- N   refs/heads/auto-pick-67316-branch-4.1 (ffd16d47e01)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 be/src/core/value/ip_address_cidr.h                |   6 +-
 be/src/exec/common/format_ip.h                     |  11 +-
 .../aggregate/aggregate_function_count_by_enum.h   |   3 +-
 .../exprs/aggregate/aggregate_function_min_max.h   |  10 +-
 .../function/array/function_array_pushback.cpp     |   7 +-
 .../function/function_datetime_floor_ceil.cpp      |  26 ++-
 be/src/exprs/function/function_ip.h                |   8 +-
 be/src/exprs/function/function_split_by_regexp.cpp |   4 +-
 be/src/exprs/function/function_string.cpp          |  55 +++--
 be/src/exprs/function/function_string_format.h     |   2 +-
 be/src/exprs/function/function_string_misc.cpp     |   3 +-
 be/src/exprs/function/math.cpp                     |  23 ++
 be/src/exprs/function/round.h                      | 248 ++++++---------------
 be/src/exprs/math_functions.cpp                    |  55 ++---
 be/src/util/percentile_util.h                      |  36 ++-
 be/test/exprs/aggregate/vec_count_by_enum_test.cpp |  48 ++++
 be/test/exprs/function/function_ip_test.cpp        |  35 ++-
 be/test/exprs/function/function_math_test.cpp      | 216 +++++++++++++++++-
 be/test/exprs/function/function_round_test.cpp     |  88 ++++++++
 be/test/exprs/function/function_string_test.cpp    |  51 +++++
 be/test/exprs/function/function_time_test.cpp      |  15 ++
 be/test/exprs/math_functions_test.cpp              |  40 ++++
 be/test/util/percentile_util_test.cpp              |  84 +++++++
 .../expressions/functions/scalar/NgramSearch.java  |  24 +-
 .../data/function_p0/test_pow_square.out           |  79 +++++++
 .../aggregate/percentile_bucketed_agg_merge.out    |  23 ++
 .../test_aggregate_all_functions2.out              |  14 +-
 .../test_array_functions_by_literal.out            |  36 +++
 .../test_week_floor_ceil_microsecond.out           |   8 +
 .../math_functions/test_format_round.out           |   9 +-
 .../test_parse_data_size_nullable.out              |  24 ++
 .../string_functions/test_split_by_regexp.out      |   6 +
 .../suites/function_p0/test_pow_square.groovy      | 114 ++++++++++
 .../aggregate/percentile_bucketed_agg_merge.groovy |  93 ++++++++
 .../test_aggregate_all_functions2.groovy           |   1 +
 .../test_array_functions_by_literal.groovy         |   2 +
 .../test_week_floor_ceil_microsecond.groovy        |  55 +++++
 .../math_functions/test_format_round.groovy        |   9 +-
 .../test_parse_data_size_nullable.groovy           |  50 +++++
 .../string_functions/test_split_by_regexp.groovy   |   2 +
 .../string_functions/test_string_function.groovy   |   8 +
 41 files changed, 1346 insertions(+), 285 deletions(-)
 create mode 100644 regression-test/data/function_p0/test_pow_square.out
 create mode 100644 
regression-test/data/query_p0/aggregate/percentile_bucketed_agg_merge.out
 create mode 100644 
regression-test/data/query_p0/sql_functions/datetime_functions/test_week_floor_ceil_microsecond.out
 create mode 100644 
regression-test/data/query_p0/sql_functions/string_functions/test_parse_data_size_nullable.out
 create mode 100644 regression-test/suites/function_p0/test_pow_square.groovy
 create mode 100644 
regression-test/suites/query_p0/aggregate/percentile_bucketed_agg_merge.groovy
 create mode 100644 
regression-test/suites/query_p0/sql_functions/datetime_functions/test_week_floor_ceil_microsecond.groovy
 create mode 100644 
regression-test/suites/query_p0/sql_functions/string_functions/test_parse_data_size_nullable.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to