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

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


 discard 74b15bae794 [feat](thirdparty) Add aws dentity-management and sts 
library for be and ry (#49565)
     add badd6f6e18a [Fix](case) Fix test base compaction case (#49693)
     add e5fe002805e [Bug](materialized-view)  check duplicate expr when create 
mv stmt not have groupby exprs  (#49595) (#49696)
     add f2dac1f876a branch-2.1: [fix](test) fix unstable test 
infer_intersect_except #49000 (#49709)
     add a9939c09c15 branch-2.1: [improve](thrift) Config 
thrift_max_message_size for FE SIMPLE and TH… #49678 (#49725)
     add e898dbbba02 branch-2.1: [fix](mc)Fixed the issue that maxcompute 
catalog can only read part of the timestamp data #49600 (#49706)
     add 997db43dda0 branch-2.1: [improve](thrift) Config 
thrift_max_message_size for THREAD_POOL and … #49677 (#49724)
     add f7f230dd34c branch-2.1: [fix](nereids)canInferNotNullForMarkSlot 
method get wrong result if fold constant rule is disabled (#49695)
     add cf847b8c711 [fix](load) return DataQualityError when filtered rows 
exceeds limit (#47617) (#49289)
     add 145e393d3db branch-2.1: [fix](function) check return type is nullptr 
in FunctionBasePtr::build #49737 (#49761)
     add 0735c19cdda branch-2.1: [fix](paimon) Covert Paimon DeletionFile Path 
to StoragePath in fe #49645 (#49751)
     add 3d10db4786a branch-2.1 [opt](nereids) set column stats unkown by 
default when derive Not expressoin #48864 (#49742)
     add 2b084295777 branch-2.1: [fix](meta) do not check replica allocation 
when replay #49569 (#49604)
     add 672829096e0 [chore](enhancement) remove atomic load shared ptr usage 
(#49781)
     add 15662c06e66 branch-2.1: [fix](auth)Ignore replay edit log error of 
auth #49348 (#49787)
     add 3a282bd3072 branch-2.1:[fix](auth)Delete from should not check 
select_priv (#49794)
     add 342b55afc2b branch-2.1: [fix](binlog) get table with db lock if the 
table not exists #49566 (#49648)
     add 486e4586182 branch-2.1: [case](mtmv)add case for insert overwrite of 
mtmv force drop partition #48946 (#49800)
     add 6974a8fc4ab branch-2.1: [opt](nereids)do not apply CSE(Common Sub 
Expression) upon multiDataSink #33746 (#49797)
     add c0bc16d88f0 [fix](function) wrong result of arrays_overlap (#49403) 
(#49707)
     add 0ea87fba6f0 branch-2.1: [Bug][function] fix the string cast jsonb 
cause null map have not init value #49810 (#49817)
     add 4216c8e3b9f [feat](thirdparty) Add aws dentity-management and sts 
library for be and ry (#49565)

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   (74b15bae794)
            \
             N -- N -- N   refs/heads/auto-pick-49565-branch-2.1 (4216c8e3b9f)

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/pipeline/task_queue.cpp                     |  16 +--
 be/src/pipeline/task_queue.h                       |   6 +-
 be/src/runtime/runtime_state.cpp                   |   8 +-
 be/src/runtime/runtime_state.h                     |   2 +-
 be/src/util/thrift_server.cpp                      |  27 +++-
 be/src/vec/exec/format/csv/csv_reader.cpp          |  21 ++-
 be/src/vec/exec/format/json/new_json_reader.cpp    |  57 ++++----
 be/src/vec/exec/scan/vfile_scanner.cpp             |  12 +-
 .../vec/functions/array/function_array_cum_sum.cpp |  10 +-
 .../functions/array/function_array_difference.h    |   8 +-
 .../vec/functions/array/function_array_element.h   |   6 +-
 .../array/function_array_enumerate_uniq.cpp        |   1 -
 .../vec/functions/array/function_arrays_overlap.h  |  87 +++++++++---
 be/src/vec/functions/function.h                    |   8 ++
 be/src/vec/functions/function_cast.h               |  12 +-
 be/src/vec/sink/group_commit_block_sink.cpp        |  14 +-
 be/src/vec/sink/vrow_distribution.cpp              |  18 +--
 be/src/vec/sink/vtablet_block_convertor.cpp        |  47 +++----
 be/src/vec/sink/vtablet_block_convertor.h          |  13 +-
 be/src/vec/sink/vtablet_finder.cpp                 |  16 +--
 be/src/vec/sink/vtablet_finder.h                   |   4 +-
 .../vec/function/function_arrays_overlap_test.cpp  |  63 +++++++--
 be/test/vec/function/function_test_util.cpp        |   3 +
 .../vec/function/simple_function_factory_test.cpp  |  98 +++++++++++++
 .../doris/maxcompute/MaxComputeColumnValue.java    |  63 +++------
 .../doris/analysis/CreateMaterializedViewStmt.java |  30 ++--
 .../apache/doris/catalog/ColocateTableIndex.java   |   8 +-
 .../main/java/org/apache/doris/catalog/Env.java    |   2 +-
 .../java/org/apache/doris/common/ThriftServer.java |  51 ++++++-
 .../doris/common/util/DynamicPartitionUtil.java    |  19 +--
 .../maxcompute/source/MaxComputeScanNode.java      |   2 +-
 .../datasource/paimon/source/PaimonScanNode.java   |   6 +-
 .../org/apache/doris/mysql/privilege/Auth.java     |  16 ++-
 .../glue/translator/PhysicalPlanTranslator.java    |   2 +-
 .../doris/nereids/stats/FilterEstimation.java      |  11 +-
 .../trees/plans/commands/DeleteFromCommand.java    |   9 +-
 .../apache/doris/nereids/util/ExpressionUtils.java |   7 +-
 .../org/apache/doris/planner/RuntimeFilter.java    |   2 +-
 .../apache/doris/service/FrontendServiceImpl.java  |  15 ++
 .../util/CanInferNotNullForMarkSlotTest.java       |  87 ++++++++++++
 .../test_paimon_deletion_vector_oss.out}           | Bin 431 -> 525 bytes
 .../maxcompute/test_max_compute_timestamp.out      | Bin 3944 -> 5359 bytes
 .../test_array_contains_with_inverted_index.out    | Bin 43652 -> 44492 bytes
 .../infer_predicate/infer_intersect_except.out     | Bin 4764 -> 4764 bytes
 .../array_functions/test_array_functions.out       | Bin 28534 -> 28536 bytes
 .../test_array_functions_by_literal.out            | Bin 30047 -> 30053 bytes
 .../json_functions/test_json_function.out          | Bin 1260 -> 1295 bytes
 .../test_array_contains_with_inverted_index.out    | Bin 45214 -> 46174 bytes
 .../auth_call/test_dml_delete_table_auth.groovy    |  12 +-
 .../test_base_compaction_no_value.groovy           | 151 ++++++---------------
 .../paimon/test_paimon_deletion_vector_oss.groovy  |  60 ++++++++
 .../maxcompute/test_max_compute_timestamp.groovy   |  54 ++++++++
 .../load_p0/stream_load/test_stream_load.groovy    |   2 +-
 .../test_stream_load_with_filtered_rows.groovy     |  94 +++++++++++++
 ...um_mtmv.groovy => test_iot_recycle_mtmv.groovy} |  42 +++---
 regression-test/suites/mv_p0/unique/unique.groovy  |   5 +
 .../infer_predicate/infer_intersect_except.groovy  |   1 +
 .../json_functions/test_json_function.groovy       |   2 +
 .../suites/statistics/test_analyze_mv.groovy       |   2 +-
 59 files changed, 898 insertions(+), 414 deletions(-)
 create mode 100644 be/test/vec/function/simple_function_factory_test.cpp
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/util/CanInferNotNullForMarkSlotTest.java
 copy regression-test/data/external_table_p0/{hive/test_hive_to_date.out => 
paimon/test_paimon_deletion_vector_oss.out} (52%)
 create mode 100644 
regression-test/suites/external_table_p0/paimon/test_paimon_deletion_vector_oss.groovy
 create mode 100644 
regression-test/suites/load_p0/stream_load/test_stream_load_with_filtered_rows.groovy
 copy regression-test/suites/mtmv_p0/{test_refresh_partition_num_mtmv.groovy => 
test_iot_recycle_mtmv.groovy} (64%)


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

Reply via email to