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

morningman pushed a change to branch dev-1.0.1
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 6d98f6a43e fix bug (#10509)
    omit 589b44eddf [hotfix](dev-1.0.1) fix send fragment stuck bug
    omit 73a7545982 [hotfix](dev-1.0.1) modify stop_be and disable meta_tool 
build by default
    omit 9b6d585e75 [log] add more error info for hdfs reader writer (#10475)
    omit 758eb455d4 [hotfix](dev-1.0.1) remove incubating
    omit f2ac55d6ae [bugfix]fix bitmap function bug (#10477)
    omit 7a2228b76b [hotfix] change hive, broker, iceberg table query to 
non-vec engine
    omit 8cce760493 [hotfix](dev-1.0.1) fix agg node produce nullable value bug 
(#10430)
    omit f0ec2e3639 [improvement]change shard num of page cache to 1024 to 
reduce lock contention (#10449)
    omit cda74f67fb [hotfix] add rm -f to avoid build failed
    omit 07d5672116 [fix](backup) fix mkdir failed (#10422) (#10423)
    omit f0927d9755 [fix](random-distribution) Make aggregate keys table with 
replace type columns and unique keys table can only have hash distribution to 
make data computing correctly (#10414)
    omit 1df9ae0aaa [fix](doe) fix doe on es v8 (#10391)
    omit cedf2f240a [bug] fix window function nullable type bug
    omit c6fb643a32 Revert "[fix](vectorized) Support outer join for vectorized 
exec engine (#10323)"
     new ef176deafa [fix](doe) fix doe on es v8 (#10391)
     new d51a8d2131 [fix](random-distribution) Make aggregate keys table with 
replace type columns and unique keys table can only have hash distribution to 
make data computing correctly (#10414)
     new ade515225c [fix](backup) fix mkdir failed (#10422) (#10423)
     new 1b03e68d11 [hotfix] add rm -f to avoid build failed
     new 4ff62b32b4 [improvement]change shard num of page cache to 1024 to 
reduce lock contention (#10449)
     new 36bbe02f96 [hotfix] change hive, broker, iceberg table query to 
non-vec engine
     new 40a5673d4c [hotfix](dev-1.0.1) remove incubating
     new 926138c6a0 [log] add more error info for hdfs reader writer (#10475)
     new 7caa1eb6ab [hotfix](dev-1.0.1) modify stop_be and disable meta_tool 
build by default
     new 6f649184be [hotfix](dev-1.0.1) fix send fragment stuck bug
     new 108085330a [hotfix](dev-1.0.1) fix inline view bug for vec engine
     new 9177ccd30a [hotfix](dev-1.0.1) BE prevent core by nullable not suit in 
hash join node
     new 3948ef23b5 [bugfix]fix bitmap function bug (#10477)

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   (6d98f6a43e)
            \
             N -- N -- N   refs/heads/dev-1.0.1 (3948ef23b5)

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.

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 be/src/exec/exec_node.cpp                          |   4 +-
 be/src/exec/exec_node.h                            |   2 +-
 be/src/vec/columns/column_nullable.cpp             |   7 +
 be/src/vec/columns/column_nullable.h               |   1 +
 be/src/vec/core/block.cpp                          |   4 +-
 be/src/vec/exec/join/vhash_join_node.cpp           | 422 +++++++++++++--------
 be/src/vec/exec/join/vhash_join_node.h             |  37 +-
 be/src/vec/exec/vaggregation_node.cpp              |  73 ++--
 be/src/vec/exec/vaggregation_node.h                |   7 +-
 be/src/vec/exec/vanalytic_eval_node.cpp            |  11 +-
 be/src/vec/exprs/vslot_ref.h                       |   1 -
 be/src/vec/functions/functions_logical.cpp         |  18 +-
 be/src/vec/sink/vtablet_sink.cpp                   |  12 +-
 .../java/org/apache/doris/analysis/Analyzer.java   |  71 +---
 .../org/apache/doris/analysis/DescriptorTable.java |  17 +
 .../apache/doris/analysis/ExprSubstitutionMap.java | 107 +++++-
 .../java/org/apache/doris/analysis/FromClause.java |  23 +-
 .../org/apache/doris/analysis/InlineViewRef.java   |   1 +
 .../java/org/apache/doris/analysis/SelectStmt.java |   8 -
 .../java/org/apache/doris/analysis/TableRef.java   |   5 -
 .../org/apache/doris/planner/AggregationNode.java  |  17 +-
 .../org/apache/doris/planner/HashJoinNode.java     | 317 ++++++++++++++--
 .../org/apache/doris/planner/OlapScanNode.java     |   1 -
 .../java/org/apache/doris/planner/PlanNode.java    |  15 +-
 .../org/apache/doris/planner/ProjectPlanner.java   |   3 +-
 .../org/apache/doris/planner/SetOperationNode.java |   3 +-
 .../apache/doris/planner/SingleNodePlanner.java    |  24 +-
 .../java/org/apache/doris/planner/SortNode.java    |   2 +-
 .../doris/planner/ProjectPlannerFunctionTest.java  |   4 +-
 .../org/apache/doris/planner/QueryPlanTest.java    |   9 +-
 gensrc/thrift/PlanNodes.thrift                     |   5 +
 .../test_outer_join_with_window_function.out       |   4 -
 .../test_outer_join_with_window_function.groovy    | 289 --------------
 33 files changed, 867 insertions(+), 657 deletions(-)
 delete mode 100644 
regression-test/data/correctness/test_outer_join_with_window_function.out
 delete mode 100644 
regression-test/suites/correctness/test_outer_join_with_window_function.groovy


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

Reply via email to