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

airborne pushed a change to branch auto-pick-48389-branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard e795fd05396 [fix](index build) Correct inverted index behavior after 
dynamically adding a column (#48389)
     add 987600d5a3b [test](beut) pick ColumnHelper to branch-3.0 (#48692)
     add a9843ff8f47 [fix](array_avg)pick array_avg core (#48691)
     add a25e4133540 [fix](regression) fix case bug limit_push_down in 
branch-3.0 (#48608)
     add 1a2aff22209 branch-3.0: [Bug](compile) fix compile error in master 
branch about GCC #42936 (#48665)
     add efb090be69e [cherry-pick](serde) Fix the behavior of serializing 
ip/date types nested in complex types (#48685)
     add efd5439f3df [Fix](test) Fix test_cold_data_compaction_fault_injection 
(#48708)
     add 3eaa03d2052 branch-3.0: Revert "[fix](nereids) Add unique id to non 
foldable expr… (#48703)
     add 738fb88ee79 branch-3.0: [fix](regression)Fix insert p2 cases. #48636 
(#48683)
     add 49ed7c8f165 [fix](cloud) fix evict_in_advance ut for branch-3.0 
(#48730)
     add 5989c2b0352 [branch-30](ut) fix window_funnel UT failure (#48724)
     add 2fdc378e1aa [cherry-pick](jsonb) fix invalid jsonb value write into 
segment file which make be crash (#48731)
     add 01753a497f8 [fix](index build) Correct inverted index behavior after 
dynamically adding a column (#48389)

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   (e795fd05396)
            \
             N -- N -- N   refs/heads/auto-pick-48389-branch-3.0 (01753a497f8)

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/util/jsonb_document.h                       |    4 +-
 be/src/util/jsonb_utils.h                          |    2 +-
 be/src/util/jsonb_writer.h                         |    3 +-
 .../data_types/serde/data_type_date64_serde.cpp    |   25 +-
 .../serde/data_type_datetimev2_serde.cpp           |   10 +-
 .../data_types/serde/data_type_datev2_serde.cpp    |    9 +
 .../vec/data_types/serde/data_type_ipv4_serde.cpp  |    9 +
 .../vec/data_types/serde/data_type_ipv6_serde.cpp  |   11 +
 .../exprs/table_function/vexplode_json_array.cpp   |    2 +-
 .../exprs/table_function/vexplode_json_object.cpp  |    4 +-
 be/src/vec/functions/function_cast.h               |    4 +-
 be/src/vec/functions/function_jsonb.cpp            |   17 +-
 be/src/vec/functions/url/find_symbols.h            |   11 +-
 be/src/vec/jsonb/serialize.cpp                     |    2 +-
 be/src/vec/olap/olap_data_convertor.cpp            |   23 +-
 be/src/vec/olap/olap_data_convertor.h              |    4 +-
 be/test/io/cache/block_file_cache_test.cpp         |    4 +-
 be/test/testutil/column_helper.h                   |  107 ++
 .../aggregate_functions/vec_window_funnel_test.cpp |   10 +-
 .../vec/data_types/common_data_type_serder_test.h  |   19 +-
 be/test/vec/data_types/data_type_ip_test.cpp       |  128 +-
 .../vec/data_types/serde/data_type_serde_test.cpp  |    4 +-
 .../data_types/serde/data_type_serde_text_test.cpp |   32 +-
 be/test/vec/olap/jsonb_value_test.cpp              |  242 +++
 .../expression/rules/FoldConstantRuleOnBE.java     |    1 +
 .../functions/ComputePrecisionForArrayItemAgg.java |   13 +
 .../trees/expressions/functions/scalar/Random.java |   61 +-
 .../expressions/functions/scalar/RandomBytes.java  |   39 +-
 .../trees/expressions/functions/scalar/Uuid.java   |   36 -
 .../expressions/functions/scalar/UuidNumeric.java  |   36 -
 .../rules/expression/ExpressionRewriteTest.java    |   11 -
 .../rules/expression/SimplifyRangeTest.java        |   14 +-
 .../functions/NonfoldableFunctionTest.java         |   58 -
 .../outfile/csv/test_outfile_csv_array_type.out    |  Bin 7168 -> 7204 bytes
 .../outfile/csv/test_outfile_csv_complex_type.out  |  Bin 8537 -> 8577 bytes
 .../outfile/csv/test_outfile_csv_map_type.out      |  Bin 13751 -> 13841 bytes
 .../limit_push_down/limit_push_down.out            |  Bin 21517 -> 21029 bytes
 .../data/nereids_rules_p0/test_nonfoldable.out     |  Bin 2891 -> 2819 bytes
 .../test_array_functions_by_literal.out            |  Bin 9988 -> 29819 bytes
 .../org/apache/doris/regression/suite/Suite.groovy |   18 +
 ...mit_insert_into_lineitem_multiple_client.groovy |    8 +-
 ...mmit_insert_into_lineitem_multiple_table.groovy |    8 +-
 ...group_commit_insert_into_lineitem_normal.groovy |    5 +-
 ...ommit_insert_into_lineitem_scheme_change.groovy |    8 +-
 .../test_array_functions_by_literal.groovy         | 1658 +++++++++++++++-----
 45 files changed, 1948 insertions(+), 712 deletions(-)
 create mode 100644 be/test/testutil/column_helper.h
 create mode 100644 be/test/vec/olap/jsonb_value_test.cpp
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/functions/NonfoldableFunctionTest.java


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to