This is an automated email from the ASF dual-hosted git repository. w41ter pushed a change to branch auto-pick-49028-branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
discard 2dc927c1fc3 [feat](binlog) filter the async mv binlogs (#49028) add d0f6edd2128 branch-2.1: [improvement](statistics)Add session variable for partition sample count. #48218 (#49092) add 8589db3ec35 Revert "branch-2.1: [fix](nereids) fix distinct window compute wrong result (#48987) (#49010)" (#49079) add 3b70606c4f7 [improvement](statistics)Improve analyze partition column and key column corner case. (#48757) (#49101) add 1eff4538aa3 branch-2.1: [fix](nereids) fix convert to date literal throw exception #48980 (#48985) add afb143c1e86 [improve](binlog) Add config to control whether enable persistent connection during ingesting (#49005) add be3e2f36d07 branch-2.1: [fix](nereids)fix the cascadesContext.getMemo()==null #48771 (#49095) add e7d4dda3c84 branch-2.1: [Fix](function) Fix wrong FE fold constant implementation of function date_format #49032 (#49086) add cf88db4938f branch-2.1: [improvement](ccr) Add and adjust result for get_lag #48953 (#49055) add 98a59f914a5 branch-2.1: [chore](binlog) GetMeta returns dropped partition/table/index commit seq #48852 (#48900) add 68f50b569b0 branch-2.1: [fix](group commit)Fix replay wal fail problem on agg state type #49081 (#49143) add bd5d0ca7416 branch-2.1: [fix](Nereids) fold str_to_date to wrong result when parameter out of range #49033 (#49150) add 16e348b189e [fix](array/map) Fix BE crash in lambda functions (#49139) add 6430ff365db [Bug](partition) should not do reset for the partition_sorts (#49148) add 44b868de6b9 branch-2.1: [fix](nereids) fix to_monday('1970-01-04 23:59:59') #49153 (#49176) add 7355cfe8b64 [Chore](runtime-filter) remove wrong check and set disable when SyncSizeClosure meet eof status (#49186) add 1822120c13c branch-2.1: [fix](multi table load) error URL does not depend on the value of _number_filtered_rows #49111 (#49131) add 13c174df4b6 branch-2.1: [fix](Nereids) fix substring with only one parameter #48957 (#49030) add a32a7ba5ebc branch-2.1: [fix](Nereids) deep copy for LogicalWindow is wrong #48861 (#49014) add cc41d61eec4 [fix](nereids)Fix dlog1, trim, extract_url_parameter and parse_url FE constant calculate bug. (#49074) (#49224) add 3b61f840f4a [fix](function) Undefined behavior in parse_url (#49149) (#49226) add e4d6460b3c4 branch-2.1-pick: [Fix](SC) Prevent the values of `__DORIS_VERSION_COL__` be wrongly replaced by fake version when merging tmp rowset in sort SC #49193 (#49222) add c67bbe77efd [test](mtmv) Fix regression test not stable and add log for debug (#48483) (#49234) add 6103ea70574 [feat](binlog) filter the async mv binlogs (#49028) 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 (2dc927c1fc3) \ N -- N -- N refs/heads/auto-pick-49028-branch-2.1 (6103ea70574) 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: be/src/common/config.cpp | 3 + be/src/common/config.h | 3 + be/src/exprs/runtime_filter.cpp | 3 +- be/src/http/http_client.cpp | 29 +- be/src/http/http_client.h | 4 + be/src/io/fs/multi_table_pipe.cpp | 5 +- be/src/olap/schema_change.cpp | 4 +- .../exec/partition_sort_source_operator.cpp | 1 - be/src/service/backend_service.cpp | 31 +- .../exprs/lambda_function/varray_map_function.cpp | 9 +- .../vec/functions/array/function_array_element.h | 5 +- be/src/vec/functions/function_string.h | 4 + be/test/vec/function/function_string_test.cpp | 7 +- .../org/apache/doris/binlog/BinlogLagInfo.java | 17 +- .../org/apache/doris/binlog/BinlogManager.java | 6 +- .../java/org/apache/doris/binlog/BinlogUtils.java | 27 +- .../java/org/apache/doris/binlog/DBBinlog.java | 19 +- .../doris/catalog/BuiltinScalarFunctions.java | 4 +- .../main/java/org/apache/doris/catalog/Env.java | 23 +- .../org/apache/doris/mtmv/MTMVPartitionUtil.java | 6 + .../org/apache/doris/nereids/NereidsPlanner.java | 15 +- .../doris/nereids/jobs/executor/Analyzer.java | 9 + .../EliminateDistinctConstant.java} | 46 +- .../rules/analysis/ProjectToGlobalAggregate.java | 126 +--- .../analysis/ProjectWithDistinctToAggregate.java | 57 ++ .../analysis/ReplaceExpressionByChildOutput.java | 34 +- .../mv/AbstractMaterializedViewRule.java | 11 + .../expression/rules/FoldConstantRuleOnFE.java | 19 +- .../LogicalWindowToPhysicalWindow.java | 2 +- .../doris/nereids/stats/ExpressionEstimation.java | 3 +- .../trees/copier/LogicalPlanDeepCopier.java | 11 +- .../executable/DateTimeExtractAndTransform.java | 28 +- .../functions/executable/NumericArithmetic.java | 11 - .../functions/executable/StringArithmetic.java | 74 ++- .../trees/expressions/functions/scalar/Dlog1.java | 68 --- .../trees/expressions/literal/DateLiteral.java | 28 +- .../trees/expressions/literal/DateTimeLiteral.java | 4 +- .../expressions/visitor/ScalarFunctionVisitor.java | 5 - .../trees/plans/logical/LogicalAggregate.java | 6 + .../trees/plans/logical/LogicalEmptyRelation.java | 12 +- .../trees/plans/logical/LogicalOneRowRelation.java | 4 + .../apache/doris/nereids/types/DateTimeV2Type.java | 10 +- .../org/apache/doris/nereids/util/DateUtils.java | 14 +- .../doris/nereids/util/TypeCoercionUtils.java | 5 +- .../java/org/apache/doris/qe/SessionVariable.java | 14 + .../apache/doris/service/FrontendServiceImpl.java | 2 + .../apache/doris/statistics/OlapAnalysisTask.java | 93 ++- .../doris/statistics/StatisticConstants.java | 4 + .../doris/statistics/util/StatisticsUtil.java | 18 + .../ExternalFileTableValuedFunction.java | 1 + .../trees/expressions/literal/DateLiteralTest.java | 9 +- .../doris/statistics/OlapAnalysisTaskTest.java | 235 +++++++- gensrc/thrift/FrontendService.thrift | 11 +- .../test_insert_table_with_dump_nereids_memo.out} | Bin 126 -> 126 bytes .../test_array_map.out} | Bin .../test_s3_load_with_load_parallelism.out | Bin 115 -> 182 bytes .../testSelectMVWithTableAlias.out | Bin 186 -> 220 bytes .../data/nereids_syntax_p0/test_cast_datetime.out | Bin 351 -> 258 bytes ...test_insert_table_with_dump_nereids_memo.groovy | 58 ++ .../suites/function_p0/test_array_map.groovy | 227 +++++++ .../test_mv_useless/test_dup_mv_useless.groovy | 11 +- .../testSelectMVWithTableAlias.groovy | 5 +- .../nereids_p0/aggregate/select_distinct.groovy | 48 -- .../fold_constant_date_arithmatic.groovy | 19 + .../fold_constant_numeric_arithmatic.groovy | 47 +- .../fold_constant_string_arithmatic.groovy | 659 +++++++++++++++++++-- .../suites/nereids_p0/union/or_expansion.groovy | 54 ++ .../mv/union_rewrite/usercase_union_rewrite.groovy | 13 + .../nereids_syntax_p0/test_cast_datetime.groovy | 531 ++++++++++++++++- .../transform_outer_join_to_anti.groovy | 1 - 70 files changed, 2343 insertions(+), 529 deletions(-) copy fe/fe-core/src/main/java/org/apache/doris/nereids/rules/{rewrite/PushDownProjectThroughLimit.java => analysis/EliminateDistinctConstant.java} (56%) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/ProjectWithDistinctToAggregate.java delete mode 100644 fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/Dlog1.java copy regression-test/data/{correctness_p0/test_hash_join_local_shuffle.out => correctness/test_insert_table_with_dump_nereids_memo.out} (87%) copy regression-test/data/{load_p0/stream_load/test_stream_load_empty_file.out => function_p0/test_array_map.out} (100%) create mode 100644 regression-test/suites/correctness/test_insert_table_with_dump_nereids_memo.groovy create mode 100644 regression-test/suites/function_p0/test_array_map.groovy delete mode 100644 regression-test/suites/nereids_p0/aggregate/select_distinct.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org