This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a change to branch runtimefilter_multi_send in repository https://gitbox.apache.org/repos/asf/doris.git
discard f94e358886 [opt](Nereids) support set cte shuffle type for each consumer discard c6b3ac6905 [feature](runtime_filter) MultiCastSender supporting runtime filter on be (#21304) add f07e0d7686 [typo](docs) Some typo in nereids.md has been fixed (#20475) add 9756ff1e25 [feature](Nereids): infer distinct from SetOperator (#21235) add a3033bff42 [Fix](s3FileWriter) fix bytes_appended bug for s3_file_writer (#21348) add 3fb75c1844 [docs](workload-group) Modify workload group docs (#21349) add a3fee40ce5 [bugfix](build script) fix noavx2 package name branch condition #21356 add 6d63261b71 [docs]<docs>Add file system benchmark tools docs (#21262) add 9f44c2d80d [fix](nereids) nest loop join stats estimation (#21275) add 33fa5dd1e9 [fix](cast) fix coredump of cast string of invalid datetime (#21350) add 2fcb0e090b [Fix](Snapshot) Shoule use false instead of 0 in while loop (#20966) new 45c7f137db [feature](runtime_filter) MultiCastSender supporting runtime filter on be (#21304) new dae170394f [opt](Nereids) support set cte shuffle type for each consumer 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 (f94e358886) \ N -- N -- N refs/heads/runtimefilter_multi_send (dae170394f) 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 2 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/io/fs/s3_file_writer.h | 3 - be/src/olap/snapshot_manager.cpp | 2 +- be/src/vec/runtime/vdatetime_value.cpp | 3 + build-for-release.sh | 2 +- docs/en/docs/admin-manual/workload-group.md | 2 +- docs/en/docs/lakehouse/fs_benchmark_tool.md | 233 +++++++++++++++++++++ .../Create/CREATE-WORKLOAD-GROUP.md | 2 +- docs/sidebars.json | 3 +- docs/zh-CN/docs/admin-manual/workload-group.md | 6 +- docs/zh-CN/docs/lakehouse/fs_benchmark_tool.md | 229 ++++++++++++++++++++ docs/zh-CN/docs/query-acceleration/nereids.md | 6 +- .../Create/CREATE-WORKLOAD-GROUP.md | 6 +- .../glue/translator/PhysicalPlanTranslator.java | 1 + .../doris/nereids/jobs/executor/Rewriter.java | 2 + .../org/apache/doris/nereids/rules/RuleType.java | 1 + .../analysis/ProjectWithDistinctToAggregate.java | 36 ++-- ...ForUnion.java => InferSetOperatorDistinct.java} | 29 ++- .../doris/nereids/stats/FilterEstimation.java | 19 +- .../apache/doris/nereids/stats/JoinEstimation.java | 85 +++++--- .../trees/plans/logical/LogicalAggregate.java | 7 + .../doris/planner/MultiCastPlanFragment.java | 5 +- .../nereids_tpcds_shape_sf100_p0/shape/query11.out | 20 +- .../nereids_tpcds_shape_sf100_p0/shape/query14.out | 86 ++++---- .../nereids_tpcds_shape_sf100_p0/shape/query18.out | 59 +++--- .../nereids_tpcds_shape_sf100_p0/shape/query4.out | 44 ++-- .../nereids_tpcds_shape_sf100_p0/shape/query74.out | 16 +- .../nereids_tpch_shape_sf1000_p0/shape/q10.out | 35 ++-- .../data/nereids_tpch_shape_sf1000_p0/shape/q5.out | 5 +- .../data/nereids_tpch_shape_sf500_p0/shape/q10.out | 35 ++-- .../data/nereids_tpch_shape_sf500_p0/shape/q5.out | 5 +- .../cast_function/test_cast_to_datetime.out | 19 ++ .../cast_function/test_cast_to_datetime.groovy | 16 +- 32 files changed, 769 insertions(+), 253 deletions(-) create mode 100644 docs/en/docs/lakehouse/fs_benchmark_tool.md create mode 100644 docs/zh-CN/docs/lakehouse/fs_benchmark_tool.md copy fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/{BuildAggForUnion.java => InferSetOperatorDistinct.java} (55%) create mode 100644 regression-test/data/query_p0/sql_functions/cast_function/test_cast_to_datetime.out copy be/src/common/env_config.h.in => regression-test/suites/query_p0/sql_functions/cast_function/test_cast_to_datetime.groovy (58%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org