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

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


 discard 10fee0fa647 [enhance](auth)When authorization includes create, not 
check if resources exist (#45125)
     add 1662e4709a7 Pick some pr to 21 #43010 #43030 #43785 #44779 #44786 
#44857 (#45129)
     add 95a12acbe6b branch-2.1: [fix](regression-test) Fix potential multi FE 
desc table result not refresh after schema change #44989 (#45009)
     add b4db543eaad [chore](ci) macOS-12 environment is deprecated, switch to 
macOS-13 (#45185)
     add 977da5ca28a [branch-2.1]count tablet meta's static memory load from 
disk (#41429) (#45128)
     add b2637e4bda5 [feat](nereids)set runtime filter wait time according to 
table row count and table type #42640 branch-2.1 (#45114)
     add f3dbd4800fd branch-2.1: [Audit](fix) fix audit log lost for npe #44145 
(#45189)
     add 2234217e829 branch-2.1: [fix](sql) Fix error for show create table 
column comment #44958 (#45172)
     add 0bcb99710b0 [branch-2.1]Add customStdAllocator for vector/map (#41193) 
(#45124)
     add a8b5125a258 branch-2.1: [fix](third party) fix hang when destroy of 
rdkafka instances #44913 (#44951)
     add da3c56d311b [test](move-memtable) fix false positives in sinkv2 
injection tests (#44552) (#45193)
     add 938ca71604b [fix](profile) do not merge fragment_level profile (#45200)
     add 46902e58215 [enhance](auth)When authorization includes create, not 
check if resources exist (#45125)

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   (10fee0fa647)
            \
             N -- N -- N   refs/heads/auto-pick-45125-branch-2.1 (46902e58215)

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:
 .github/workflows/build-thirdparty.yml             |   2 +-
 be/src/olap/compaction.cpp                         |  11 +-
 be/src/olap/compaction.h                           |   2 +-
 be/src/olap/metadata_adder.h                       | 227 ++++++++++
 be/src/olap/rowid_conversion.h                     |  29 +-
 be/src/olap/rowset/beta_rowset_writer.cpp          |   8 +
 be/src/olap/rowset/beta_rowset_writer.h            |   4 +-
 be/src/olap/rowset/rowset_meta.cpp                 |   5 +
 be/src/olap/rowset/rowset_meta.h                   |   5 +-
 be/src/olap/rowset/segcompaction.cpp               |   8 +-
 be/src/olap/rowset/segcompaction.h                 |  13 +-
 .../olap/rowset/segment_v2/bitmap_index_reader.h   |   2 +-
 .../segment_v2/bloom_filter_index_reader.cpp       |   6 +
 .../rowset/segment_v2/bloom_filter_index_reader.h  |   4 +-
 be/src/olap/rowset/segment_v2/column_reader.cpp    |  15 +-
 be/src/olap/rowset/segment_v2/column_reader.h      |   4 +-
 be/src/olap/rowset/segment_v2/index_page.cpp       |   9 +
 be/src/olap/rowset/segment_v2/index_page.h         |   6 +-
 .../rowset/segment_v2/indexed_column_reader.cpp    |  12 +-
 .../olap/rowset/segment_v2/indexed_column_reader.h |   4 +-
 .../olap/rowset/segment_v2/inverted_index_reader.h |   3 +-
 .../olap/rowset/segment_v2/ordinal_page_index.cpp  |  21 +-
 be/src/olap/rowset/segment_v2/ordinal_page_index.h |   4 +-
 be/src/olap/rowset/segment_v2/segment.cpp          |  14 +-
 be/src/olap/rowset/segment_v2/segment.h            |   4 +-
 be/src/olap/rowset/segment_v2/zone_map_index.cpp   |  17 +-
 be/src/olap/rowset/segment_v2/zone_map_index.h     |   5 +-
 be/src/olap/simple_rowid_conversion.h              |   5 +-
 be/src/olap/tablet_meta.cpp                        |   3 +-
 be/src/olap/tablet_meta.h                          |   3 +-
 be/src/olap/tablet_schema.cpp                      |  18 +-
 be/src/olap/tablet_schema.h                        |  11 +-
 be/src/runtime/thread_context.h                    |   4 +-
 be/src/vec/common/custom_allocator.h               |  82 ++++
 .../index_compaction_with_deleted_term.cpp         |   2 +-
 .../main/java/org/apache/doris/catalog/Column.java |   2 +-
 .../doris/common/profile/ExecutionProfile.java     |   6 +-
 .../main/java/org/apache/doris/mtmv/MTMVCache.java |  14 +-
 .../java/org/apache/doris/mtmv/MTMVPlanUtil.java   |  37 +-
 .../org/apache/doris/nereids/NereidsPlanner.java   |  43 ++
 .../jobs/joinorder/hypergraph/HyperElement.java    |  29 +-
 .../jobs/joinorder/hypergraph/edge/Edge.java       |   4 +-
 .../joinorder/hypergraph/node/AbstractNode.java    |   8 +-
 .../doris/nereids/rules/analysis/BindRelation.java |   4 +
 .../rules/exploration/mv/HyperGraphComparator.java | 103 +++--
 .../mv/InitMaterializationContextHook.java         |  13 +-
 .../mv/LogicalCompatibilityContext.java            |  78 +++-
 .../exploration/mv/MaterializedViewUtils.java      |  69 ++-
 .../nereids/rules/exploration/mv/StructInfo.java   | 143 ++++---
 .../nereids/rules/rewrite/PruneEmptyPartition.java |   7 +-
 .../nereids/rules/rewrite/PruneOlapScanTablet.java |   6 +-
 .../doris/nereids/stats/StatsCalculator.java       |  20 +
 .../plans/commands/UpdateMvByPartitionCommand.java |   9 +-
 .../trees/plans/commands/info/CreateMTMVInfo.java  |  44 +-
 .../commands/info/MTMVPartitionDefinition.java     |  71 ++--
 .../trees/plans/logical/LogicalOlapScan.java       |  55 ++-
 .../trees/plans/visitor/TableCollector.java        |  34 +-
 .../java/org/apache/doris/qe/AuditLogHelper.java   |   2 +-
 .../java/org/apache/doris/qe/SessionVariable.java  |  15 +
 .../doris/analysis/ShowCreateTableStmtTest.java    |  14 +-
 .../rules/rewrite/PruneOlapScanTabletTest.java     |  21 +-
 .../apache/doris/nereids/sqltest/SqlTestBase.java  |   3 +
 .../doris/nereids/trees/plans/PlanVisitorTest.java |  14 +-
 regression-test/data/mv_p0/ssb/q_1_1/q_1_1.out     |  11 +-
 .../aggregate_without_roll_up.out                  |  24 ++
 .../mv/micro_test/micro_test_when_cte.out          | 128 ++++++
 .../org/apache/doris/regression/suite/Suite.groovy |  21 +-
 .../test_writer_v2_fault_injection.groovy          |   5 +-
 .../agg_have_dup_base/agg_have_dup_base.groovy     |   2 +
 .../mv_p0/agg_state/test_agg_state_max_by.groovy   |   3 +
 .../suites/mv_p0/case_ignore/case_ignore.groovy    |   3 +
 .../suites/mv_p0/count_star/count_star.groovy      |   2 +
 .../suites/mv_p0/dis_26495/dis_26495.groovy        |   2 +
 .../suites/mv_p0/k1ap2spa/k1ap2spa.groovy          |   2 +
 regression-test/suites/mv_p0/k1s2m3/k1s2m3.groovy  |   1 +
 .../mv_p0/k1s2m3_auto_inc/k1s2m3_auto_inc.groovy   |   1 +
 .../multi_agg_with_same_slot.groovy                |   1 +
 .../mv_p0/multi_slot_k123p/multi_slot_k123p.groovy |   1 +
 .../multi_slot_k1a2p2ap3p.groovy                   |   1 +
 .../multi_slot_k1a2p2ap3ps.groovy                  |   1 +
 .../multi_slot_k1p2ap3p/multi_slot_k1p2ap3p.groovy |   1 +
 .../multi_slot_k1p2ap3ps.groovy                    |   1 +
 .../suites/mv_p0/mv_with_view/mv_with_view.groovy  |  26 +-
 .../suites/mv_p0/null_insert/null_insert.groovy    |   1 +
 .../mv_p0/routine_load_hll/routine_load_hll.groovy |   1 +
 .../multiple_ssb_between.groovy                    |  51 +--
 .../suites/mv_p0/ssb/q_1_1/q_1_1.groovy            |  40 +-
 .../suites/mv_p0/ssb/q_2_1/q_2_1.groovy            |   2 +
 .../suites/mv_p0/ssb/q_3_1/q_3_1.groovy            |  27 +-
 .../suites/mv_p0/ssb/q_4_1/q_4_1.groovy            |   2 +
 .../suites/mv_p0/ssb/q_4_1_r1/q_4_1_r1.groovy      |   1 +
 .../suites/mv_p0/sum_count/sum_count.groovy        |   1 +
 .../mv_p0/sum_divede_count/sum_devide_count.groovy |   2 +
 .../suites/mv_p0/test_28741/test_28741.groovy      |   2 +-
 .../test_approx_count_distinct.groovy              |   1 +
 .../suites/mv_p0/test_base/test_base.groovy        |   1 +
 .../mv_p0/test_casewhen/test_casewhen.groovy       |   1 +
 .../mv_p0/test_create_mv/test_create_mv.groovy     |   2 +
 .../test_create_mv_complex_type.groovy             |   2 +
 .../suites/mv_p0/test_doc_e4/test_doc_e4.groovy    |   1 +
 .../test_dup_group_by_mv_abs.groovy                |   1 +
 .../test_dup_group_by_mv_plus.groovy               |   1 +
 .../mv_p0/test_dup_mv_abs/test_dup_mv_abs.groovy   |   1 +
 .../mv_p0/test_dup_mv_bin/test_dup_mv_bin.groovy   |   1 +
 .../test_dup_mv_bitmap_hash.groovy                 |   3 +
 .../mv_p0/test_dup_mv_plus/test_dup_mv_plus.groovy |   2 +-
 .../test_dup_mv_repeat/test_dup_mv_repeat.groovy   |   1 +
 .../mv_p0/test_dup_mv_year/test_dup_mv_year.groovy |   1 +
 .../suites/mv_p0/test_mv_dp/test_mv_dp.groovy      |   2 +
 .../suites/mv_p0/test_mv_mor/test_mv_mor.groovy    |   2 +
 .../suites/mv_p0/test_ndv/test_ndv.groovy          |   1 +
 .../suites/mv_p0/test_nvl/test_nvl.groovy          |   1 +
 .../suites/mv_p0/test_o2/test_o2.groovy            |   1 +
 .../suites/mv_p0/test_substr/test_substr.groovy    |   1 +
 .../mv_p0/test_tbl_name/test_tbl_name.groovy       |   1 +
 .../mv_p0/test_upper_alias/test_upper_alias.groovy |   1 +
 .../test_user_activity/test_user_activity.groovy   |   1 +
 regression-test/suites/mv_p0/unique/unique.groovy  |   1 +
 .../testAggQueryOnAggMV1.groovy                    |   1 +
 .../testAggQueryOnAggMV10.groovy                   |   1 +
 .../testAggQueryOnAggMV11.groovy                   |   1 +
 .../testAggQueryOnAggMV2.groovy                    |   1 +
 .../testAggQueryOnAggMV3.groovy                    |   2 +-
 .../testAggQuqeryOnAggMV5.groovy                   |   1 +
 .../testAggQuqeryOnAggMV6.groovy                   |   1 +
 .../testAggQuqeryOnAggMV7.groovy                   |   2 +
 .../testAggregateMVCalcAggFunctionQuery.groovy     |   1 +
 .../testBitmapUnionInQuery.groovy                  |   2 +-
 .../testCountDistinctToBitmap.groovy               |   4 +
 .../testIncorrectMVRewriteInSubquery.groovy        |   1 +
 .../testIncorrectRewriteCountDistinct.groovy       |   1 +
 .../testJoinOnLeftProjectToJoin.groovy             |   3 +
 .../mv_p0/ut/testNDVToHll/testNDVToHll.groovy      |   1 +
 .../testOrderByQueryOnProjectView.groovy           |   1 +
 .../ut/testProjectionMV1/testProjectionMV1.groovy  |   1 +
 .../ut/testProjectionMV2/testProjectionMV2.groovy  |   1 +
 .../ut/testProjectionMV3/testProjectionMV3.groovy  |   1 +
 .../ut/testProjectionMV4/testProjectionMV4.groovy  |   1 +
 .../ut/testQueryOnStar/testQueryOnStar.groovy      |   1 +
 .../testSelectMVWithTableAlias.groovy              |   2 +
 .../testSingleMVMultiUsage.groovy                  |   1 +
 .../mv_p0/ut/testSubQuery/testSubQuery.groovy      |   2 +-
 .../ut/testUnionDistinct/testUnionDistinct.groovy  |   2 +
 .../mv/agg_on_none_agg/agg_on_none_agg.groovy      |   6 +
 .../mv/agg_variety/agg_variety.groovy              |   6 +
 .../agg_with_roll_up/aggregate_with_roll_up.groovy |   3 +
 .../aggregate_without_roll_up.groovy               | 469 ++++++++++++++++++++-
 .../mv/availability/grace_period.groovy            |   2 +
 .../availability/materialized_view_switch.groovy   |  22 +-
 .../mv/dimension/dimension_1.groovy                |   3 +
 .../mv/dimension/dimension_2_3.groovy              |   3 +
 .../mv/dimension/dimension_2_4.groovy              |   4 +
 .../mv/dimension/dimension_2_5.groovy              |   4 +
 .../mv/dimension/dimension_2_6.groovy              |   6 +
 .../mv/dimension/dimension_2_full_join.groovy      |   2 +
 .../mv/dimension/dimension_2_inner_join.groovy     |   3 +
 .../mv/dimension/dimension_2_left_anti_join.groovy |   3 +
 .../mv/dimension/dimension_2_left_join.groovy      |   3 +
 .../mv/dimension/dimension_2_left_semi_join.groovy |   3 +
 .../dimension/dimension_2_right_anti_join.groovy   |   3 +
 .../mv/dimension/dimension_2_right_join.groovy     |   3 +
 .../dimension/dimension_2_right_semi_join.groovy   |   3 +
 .../mv/dimension/dimension_self_conn.groovy        |   3 +
 .../dimension_2_join_agg.groovy                    |  15 +-
 .../dimension_join_agg_negative.groovy             |   3 +
 .../filter_equal_or_notequal.groovy                |   3 +
 .../mv/direct_query/direct_query.groovy            |   3 +
 .../mv/grouping_sets/grouping_sets.groovy          |   3 +
 .../mv/is_in_debug_mode/is_in_debug_mode.groovy    | 156 +++++++
 .../mv/join/dphyp_inner/inner_join_dphyp.groovy    |   4 +
 .../mv/join/dphyp_outer/outer_join_dphyp.groovy    |   4 +
 .../mv/join/inner/inner_join.groovy                |   4 +
 .../mv/join/left_outer/outer_join.groovy           |  11 +
 .../inner_join_infer_and_derive.groovy             |   3 +
 .../left_join_infer_and_derive.groovy              |   2 +
 .../right_join_infer_and_derive.groovy             |   3 +
 .../micro_test_when_cte.groovy}                    | 131 +++---
 .../mv/negative/negative_test.groovy               |   3 +
 .../mv/nested/nested_materialized_view.groovy      |   4 +
 .../mv/nested_mtmv/nested_mtmv.groovy              | 213 ++++------
 .../nested_mtmv_rewrite_switch.groovy              |   3 +
 .../mv/partition_mv_rewrite.groovy                 |   4 +
 .../nereids_rules_p0/mv/scan/scan_table.groovy     |   4 +
 .../union_all_compensate.groovy                    |   3 +
 .../partition_curd_union_rewrite.groovy            |   3 +
 .../mv/union_rewrite/usercase_union_rewrite.groovy |   3 +
 .../mv/unsafe_equals/null_un_safe_equals.groovy    |   2 +
 .../nereids_rules_p0/mv/variant/variant_mv.groovy  |   3 +
 .../mv/with_auth/with_select_table_auth.groovy     |   3 +
 .../mv/with_sql_limit/query_with_sql_limit.groovy  |   4 +
 .../with_table_operator/with_table_operator.groovy | 195 +++++++++
 .../mv/newMv/aggHaveDupBase.groovy                 |   1 +
 .../nereids_syntax_p0/mv/newMv/case_ignore.groovy  |   2 +
 .../mv/newMv/dup_gb_mv_abs.groovy                  |   1 +
 .../mv/newMv/dup_gb_mv_plus.groovy                 |   1 +
 .../nereids_syntax_p0/mv/newMv/dup_mv_abs.groovy   |   2 +-
 .../nereids_syntax_p0/mv/newMv/dup_mv_bin.groovy   |   1 +
 .../mv/newMv/dup_mv_bm_hash.groovy                 |   1 +
 .../nereids_syntax_p0/mv/newMv/dup_mv_plus.groovy  |   2 +-
 .../nereids_syntax_p0/mv/newMv/dup_mv_year.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot1.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot2.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot3.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot4.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot5.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/multi_slot6.groovy  |   1 +
 .../nereids_syntax_p0/mv/newMv/single_slot.groovy  |   2 +-
 .../mv/newMv/sum_devide_count.groovy               |   2 +-
 .../nereids_syntax_p0/mv/newMv/unique_mv.groovy    |   1 +
 .../nereids_syntax_p0/mv/ut/MVMultiUsage.groovy    |   3 +
 .../suites/nereids_syntax_p0/mv/ut/MVWithAs.groovy |   3 +
 .../nereids_syntax_p0/mv/ut/aggCDInBitmap.groovy   |   9 +
 .../nereids_syntax_p0/mv/ut/aggMVCalcAggFun.groovy |   2 +-
 .../nereids_syntax_p0/mv/ut/aggOnAggMV1.groovy     |   1 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV10.groovy    |   1 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV11.groovy    |   3 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV2.groovy     |   1 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV3.groovy     |   1 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV5.groovy     |   2 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV6.groovy     |   1 +
 .../nereids_syntax_p0/mv/ut/aggOnAggMV7.groovy     |   1 +
 .../nereids_syntax_p0/mv/ut/bitmapUnionIn.groovy   |   3 +
 .../nereids_syntax_p0/mv/ut/incMVReInSub.groovy    |   3 +
 .../nereids_syntax_p0/mv/ut/incRewriteCD.groovy    |   3 +
 .../mv/ut/joinOnLeftPToJoin.groovy                 |   5 +
 .../nereids_syntax_p0/mv/ut/orderByOnPView.groovy  |   2 +
 .../nereids_syntax_p0/mv/ut/projectMV1.groovy      |   3 +
 .../nereids_syntax_p0/mv/ut/projectMV2.groovy      |   3 +
 .../nereids_syntax_p0/mv/ut/projectMV3.groovy      |   3 +
 .../nereids_syntax_p0/mv/ut/projectMV4.groovy      |   3 +
 .../suites/nereids_syntax_p0/mv/ut/subQuery.groovy |   2 +-
 .../suites/nereids_syntax_p0/mv/ut/unionDis.groovy |   2 +
 .../suites/nereids_syntax_p0/rollup/agg.groovy     |   1 +
 .../nereids_syntax_p0/rollup/agg_date.groovy       |   1 +
 .../suites/nereids_syntax_p0/rollup/bitmap.groovy  |   1 +
 .../suites/nereids_syntax_p0/rollup/date.groovy    |   1 +
 .../suites/nereids_syntax_p0/rollup/hll/hll.groovy |   1 +
 .../hll_with_light_sc/hll_with_light_sc.groovy     |   1 +
 thirdparty/patches/librdkafka-1.9.2.patch          | 111 ++++-
 239 files changed, 2778 insertions(+), 642 deletions(-)
 create mode 100644 be/src/olap/metadata_adder.h
 create mode 100644 be/src/vec/common/custom_allocator.h
 copy regression-test/suites/mv_p0/dis_26495/dis_26495.groovy => 
fe/fe-core/src/main/java/org/apache/doris/nereids/jobs/joinorder/hypergraph/HyperElement.java
 (50%)
 create mode 100644 
regression-test/data/nereids_rules_p0/mv/micro_test/micro_test_when_cte.out
 create mode 100644 
regression-test/suites/nereids_rules_p0/mv/is_in_debug_mode/is_in_debug_mode.groovy
 copy 
regression-test/suites/nereids_rules_p0/mv/{direct_query/direct_query.groovy => 
micro_test/micro_test_when_cte.groovy} (56%)
 create mode 100644 
regression-test/suites/nereids_rules_p0/mv/with_table_operator/with_table_operator.groovy


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

Reply via email to