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

924060929 pushed a change to branch auto-pick-64633-branch-4.2
in repository https://gitbox.apache.org/repos/asf/doris.git


    omit d23c224429b branch-4.2: [fix](nereids) fix limit + offset overflow 
when pushing down TopN/Limit #64633
    omit 0d52d03055a branch-4.2: [opt](local shuffle) bucket-shuffle dest 
spreading + bucket-to-hash parallelism upgrade #64793
    omit 392a6c43b66 branch-4.2: [refactor](local shuffle) Move local exchange 
planning from BE to FE #63366
    omit c41194bd8bc branch-4.2: [fix](nereids) allow constant output column 
not in GROUP BY under only_full_group_by #64458
     add c0fe46df32e branch-4.2: [fix](nereids) fix limit + offset overflow 
when pushing down TopN/Limit #64633

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   (d23c224429b)
            \
             N -- N -- N   refs/heads/auto-pick-64633-branch-4.2 (c0fe46df32e)

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:
 .../exec/exchange/local_exchange_sink_operator.cpp |   75 +-
 .../exec/exchange/local_exchange_sink_operator.h   |   35 +-
 .../exchange/local_exchange_source_operator.cpp    |    5 +-
 .../exec/exchange/local_exchange_source_operator.h |   40 +-
 be/src/exec/exchange/local_exchanger.h             |   42 +-
 be/src/exec/exchange/vdata_stream_recvr.h          |   15 +-
 be/src/exec/operator/aggregation_sink_operator.h   |    8 +-
 be/src/exec/operator/analytic_sink_operator.h      |    8 +-
 be/src/exec/operator/assert_num_rows_operator.h    |    2 +-
 .../distinct_streaming_aggregation_operator.h      |   10 +-
 be/src/exec/operator/exchange_source_operator.cpp  |   13 +-
 be/src/exec/operator/exchange_source_operator.h    |   44 +-
 be/src/exec/operator/hashjoin_build_sink.h         |   12 +-
 be/src/exec/operator/hashjoin_probe_operator.h     |   14 +-
 .../operator/nested_loop_join_build_operator.h     |    6 +-
 .../operator/nested_loop_join_probe_operator.h     |    4 +-
 be/src/exec/operator/operator.cpp                  |   11 +-
 be/src/exec/operator/operator.h                    |    7 +-
 .../exec/operator/partition_sort_sink_operator.h   |    5 +-
 .../partitioned_hash_join_probe_operator.cpp       |    2 +
 .../partitioned_hash_join_probe_operator.h         |   14 +-
 .../operator/partitioned_hash_join_sink_operator.h |    6 +-
 .../exec/operator/rec_cte_anchor_sink_operator.h   |    2 +-
 be/src/exec/operator/rec_cte_sink_operator.h       |    2 +-
 be/src/exec/operator/rec_cte_source_operator.h     |    2 +-
 be/src/exec/operator/scan_operator.h               |    4 +-
 be/src/exec/operator/set_probe_sink_operator.h     |    6 +-
 be/src/exec/operator/set_sink_operator.h           |    6 +-
 be/src/exec/operator/set_source_operator.h         |    4 +-
 be/src/exec/operator/sort_sink_operator.h          |   10 +-
 .../exec/operator/streaming_aggregation_operator.h |    6 +-
 be/src/exec/operator/table_function_operator.h     |    2 +-
 be/src/exec/operator/union_sink_operator.h         |    5 +-
 be/src/exec/operator/union_source_operator.h       |    4 +-
 be/src/exec/pipeline/dependency.h                  |   51 +-
 be/src/exec/pipeline/pipeline.cpp                  |    6 +-
 be/src/exec/pipeline/pipeline.h                    |   15 +-
 be/src/exec/pipeline/pipeline_fragment_context.cpp |  349 +----
 be/src/exec/pipeline/pipeline_fragment_context.h   |   30 +-
 be/src/runtime/exec_env_init.cpp                   |   11 -
 be/src/runtime/runtime_state.cpp                   |    3 +-
 be/src/runtime/runtime_state.h                     |    7 +-
 be/test/exec/operator/agg_operator_test.cpp        |   16 +-
 ...istinct_streaming_aggregation_operator_test.cpp |    4 +-
 .../exec/operator/streaming_agg_operator_test.cpp  |    4 +-
 be/test/exec/pipeline/local_exchanger_test.cpp     |   15 +-
 be/test/exec/pipeline/pipeline_test.cpp            |   21 +-
 .../java/org/apache/doris/catalog/EnvFactory.java  |   16 +-
 .../doris/cloud/catalog/CloudEnvFactory.java       |    4 +-
 .../org/apache/doris/nereids/NereidsPlanner.java   |   17 +-
 .../glue/translator/PhysicalPlanTranslator.java    |   52 +-
 .../glue/translator/PlanTranslatorContext.java     |   68 -
 .../properties/ChildrenPropertiesRegulator.java    |    9 +-
 .../nereids/rules/analysis/NormalizeAggregate.java |   47 +-
 .../apache/doris/nereids/trees/plans/PlanType.java |    1 -
 .../commands/insert/InsertIntoTableCommand.java    |   16 +-
 .../trees/plans/distribute/DistributePlanner.java  |   57 +-
 .../job/UnassignedScanBucketOlapTableJob.java      |    2 +-
 .../org/apache/doris/planner/AddLocalExchange.java |  257 ----
 .../org/apache/doris/planner/AggregationNode.java  |  168 +-
 .../org/apache/doris/planner/AnalyticEvalNode.java |   84 +-
 .../apache/doris/planner/AssertNumRowsNode.java    |   18 +-
 .../java/org/apache/doris/planner/CTEScanNode.java |   10 -
 .../java/org/apache/doris/planner/DataSink.java    |    5 -
 .../org/apache/doris/planner/EmptySetNode.java     |   10 -
 .../java/org/apache/doris/planner/ExceptNode.java  |    6 -
 .../org/apache/doris/planner/ExchangeNode.java     |   45 +-
 .../org/apache/doris/planner/HashJoinNode.java     |  171 ---
 .../org/apache/doris/planner/IntersectNode.java    |    6 -
 .../apache/doris/planner/LocalExchangeNode.java    |  357 -----
 .../apache/doris/planner/MaterializationNode.java  |   18 +-
 .../apache/doris/planner/NestedLoopJoinNode.java   |   62 +-
 .../org/apache/doris/planner/OlapScanNode.java     |   19 -
 .../apache/doris/planner/PartitionSortNode.java    |   44 -
 .../org/apache/doris/planner/PlanFragment.java     |    2 +-
 .../java/org/apache/doris/planner/PlanNode.java    |  361 +----
 .../org/apache/doris/planner/RecursiveCteNode.java |   50 -
 .../apache/doris/planner/RecursiveCteScanNode.java |   12 +-
 .../java/org/apache/doris/planner/RepeatNode.java  |   27 +-
 .../org/apache/doris/planner/RuntimeFilter.java    |   39 +-
 .../java/org/apache/doris/planner/ScanNode.java    |   16 +-
 .../java/org/apache/doris/planner/SelectNode.java  |   18 +-
 .../org/apache/doris/planner/SetOperationNode.java |   65 -
 .../java/org/apache/doris/planner/SortNode.java    |   58 +-
 .../apache/doris/planner/TableFunctionNode.java    |   24 -
 .../java/org/apache/doris/planner/UnionNode.java   |    2 +-
 .../main/java/org/apache/doris/qe/Coordinator.java |    5 +-
 .../org/apache/doris/qe/NereidsCoordinator.java    |   11 -
 .../java/org/apache/doris/qe/SessionVariable.java  |   62 +-
 .../java/org/apache/doris/qe/StmtExecutor.java     |    5 +-
 .../doris/qe/runtime/ThriftPlansBuilder.java       |    3 +-
 .../analysis/OnlyFullGroupByConstantTest.java      |  102 --
 .../planner/LocalShuffleNodeCoverageTest.java      |  935 -----------
 .../java/org/apache/doris/planner/PlanShape.java   |  335 ----
 .../org/apache/doris/planner/PlanShapeDsl.java     |  152 --
 .../apache/doris/qe/LocalExchangePlannerTest.java  |  721 ---------
 gensrc/thrift/PaloInternalService.thrift           |    3 -
 gensrc/thrift/Partitions.thrift                    |   85 -
 gensrc/thrift/PlanNodes.thrift                     |   30 +-
 .../gen_function/unnest_order_by_list_test.out     |    8 +-
 .../test_group_by_constant_output.out              |   10 -
 .../test_multilevel_join_agg_local_shuffle.out     |  814 ----------
 .../plugins/plugin_profile_plan_tree.groovy        |  298 ----
 .../gen_function/unnest_order_by_list_test.groovy  |   10 +-
 .../test_enable_local_exchange_before_agg.groovy   |  157 --
 .../test_local_shuffle_bucket_upgrade.groovy       |  193 ---
 .../test_local_shuffle_fe_be_consistency.groovy    |  755 ---------
 .../test_local_shuffle_global_hash_require.groovy  |  410 -----
 .../test_local_shuffle_recursive_cte.groovy        |  181 ---
 .../test_local_shuffle_rqg_bugs.groovy             | 1616 --------------------
 .../test_old_coordinator_local_shuffle.groovy      |   99 --
 .../test_group_by_constant_output.groovy           |   46 -
 .../test_python_udaf_complex.groovy                |    2 +-
 .../test_multilevel_join_agg_local_shuffle.groovy  |  884 -----------
 114 files changed, 327 insertions(+), 10811 deletions(-)
 delete mode 100644 
fe/fe-core/src/main/java/org/apache/doris/planner/AddLocalExchange.java
 delete mode 100644 
fe/fe-core/src/main/java/org/apache/doris/planner/LocalExchangeNode.java
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/rules/analysis/OnlyFullGroupByConstantTest.java
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/planner/LocalShuffleNodeCoverageTest.java
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/planner/PlanShape.java
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/planner/PlanShapeDsl.java
 delete mode 100644 
fe/fe-core/src/test/java/org/apache/doris/qe/LocalExchangePlannerTest.java
 delete mode 100644 
regression-test/data/nereids_syntax_p0/test_group_by_constant_output.out
 delete mode 100644 
regression-test/data/query_p0/join/test_multilevel_join_agg_local_shuffle.out
 delete mode 100644 regression-test/plugins/plugin_profile_plan_tree.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_enable_local_exchange_before_agg.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_bucket_upgrade.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_fe_be_consistency.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_global_hash_require.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_recursive_cte.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_local_shuffle_rqg_bugs.groovy
 delete mode 100644 
regression-test/suites/nereids_p0/local_shuffle/test_old_coordinator_local_shuffle.groovy
 delete mode 100644 
regression-test/suites/nereids_syntax_p0/test_group_by_constant_output.groovy
 delete mode 100644 
regression-test/suites/query_p0/join/test_multilevel_join_agg_local_shuffle.groovy


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

Reply via email to