This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from d4e4e18b47 [fix](DOE): Fix query _id error and es properties error (#15792) add cfb110c905 [fix](nereids) fix some nereids bugs (#15714) No new revisions were added by this update. Summary of changes: .../glue/translator/PhysicalPlanTranslator.java | 3 - .../jobs/batch/NereidsRewriteJobExecutor.java | 2 +- .../doris/nereids/parser/LogicalPlanBuilder.java | 2 +- .../nereids/processor/post/PlanPostProcessors.java | 5 +- .../nereids/rules/analysis/CheckAnalysis.java | 7 + .../ResolveOrdinalInOrderByAndGroupBy.java | 10 +- .../exploration/join/OuterJoinLAsscomProject.java | 79 +++++++---- .../join/SemiJoinLogicalJoinTranspose.java | 16 ++- .../join/SemiJoinLogicalJoinTransposeProject.java | 19 ++- .../logical/ApplyPullFilterOnProjectUnderAgg.java | 4 +- .../rewrite/logical/EliminateGroupByConstant.java | 2 +- .../rules/rewrite/logical/NormalizeToSlot.java | 8 +- .../trees/expressions/functions/scalar/Ceil.java | 3 +- .../trees/expressions/functions/scalar/Floor.java | 3 +- .../nereids/trees/expressions/literal/Literal.java | 10 +- .../trees/plans/logical/LogicalAggregate.java | 33 +++-- .../org/apache/doris/nereids/util/JoinUtils.java | 11 +- .../doris/nereids/util/TypeCoercionUtils.java | 4 + .../org/apache/doris/planner/SetOperationNode.java | 3 + .../java/org/apache/doris/planner/SortNode.java | 8 +- .../join/OuterJoinLAsscomProjectTest.java | 39 ++---- .../data/nereids_syntax_p0/function.out | 5 + .../data/nereids_syntax_p0/group_by_constant.out | 17 +++ .../join_order.out} | 0 .../data/nereids_syntax_p0/set_operation.out | 4 + .../{using_join.out => type_cast.out} | 2 - .../data/query_p0/keyword/order_group.out | 2 +- .../suites/nereids_syntax_p0/function.groovy | 8 ++ .../nereids_syntax_p0/group_by_constant.groovy | 19 +++ .../suites/nereids_syntax_p0/join.groovy | 155 +++++++++++++++++++++ .../suites/nereids_syntax_p0/join_order.groovy | 96 +++++++++++++ .../suites/nereids_syntax_p0/set_operation.groovy | 16 ++- .../{test_convert.groovy => type_cast.groovy} | 39 ++---- 33 files changed, 502 insertions(+), 132 deletions(-) copy regression-test/data/{correctness/test_crossjoin_inlineview_slot.out => nereids_syntax_p0/join_order.out} (100%) copy regression-test/data/nereids_syntax_p0/{using_join.out => type_cast.out} (96%) create mode 100644 regression-test/suites/nereids_syntax_p0/join_order.groovy copy regression-test/suites/nereids_syntax_p0/{test_convert.groovy => type_cast.groovy} (54%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org