This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a change to branch auto-pick-39284-branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
omit 9d06dd9730c [fix](sync mv) fix rewrite wrongly with sync mv (#39284) add 766f964f745 [branch-2.1](cases) Make auto&dynamic cases sleep long enough (#44228) (#44477) add 9e0ece24523 branch-2.1: [enhance](mtmv)MTMV no longer generate cache when replaying logs #44283 (#44308) add c720e59763b branch-2.1: [fix](readme) remove contributor graph and change to contributor wall #44534 (#44536) add 5eb433e7aa7 [branch-2.1] pick some pr from master (#44556) add b1393150a49 [opt] (binlog) Support Modify ViewDef binlog #41167 (#44519) add 37f4bf865fb branch-2.1: [fix](mtmv)When compatibility fails, null pointers should not be reported #44464 (#44542) add cf2ee23e681 Revert "[fix] (compaction) fix compaction score in time series policy (#40242)" (#44527) add 07c81a63626 branch-2.1: [fix](nereids)lag and lead function's nullability is wrong #44050 (#44558) add 550aa9c3ae2 [cherry-pick](branch-2.1) Pick "[Fix](full compaction) Full compaction should not do ordered data compaction (#44359)" (#44529) add e9f4615ddc9 branch-2.1: [Bug](function)window funnel function should support datetimev2 type get scale info #44420 (#44524) add 57dad5b8e64 [fix](sync mv) fix rewrite wrongly with sync mv (#39284) 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 (9d06dd9730c) \ N -- N -- N refs/heads/auto-pick-39284-branch-2.1 (57dad5b8e64) 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: README.md | 9 +- be/src/olap/compaction.cpp | 6 +- .../cumulative_compaction_time_series_policy.cpp | 64 ++++++- be/src/olap/full_compaction.cpp | 4 + be/src/util/doris_metrics.cpp | 2 +- ...mulative_compaction_time_series_policy_test.cpp | 2 +- .../main/java/org/apache/doris/alter/Alter.java | 3 +- .../org/apache/doris/binlog/BinlogManager.java | 66 ++++--- .../main/java/org/apache/doris/catalog/MTMV.java | 10 +- .../doris/common/publish/TopicPublisherThread.java | 18 +- .../java/org/apache/doris/mtmv/BaseTableInfo.java | 9 + .../main/java/org/apache/doris/mtmv/MTMVUtil.java | 3 +- .../mv/InitMaterializationContextHook.java | 12 +- .../expressions/functions/agg/WindowFunnel.java | 4 + .../trees/expressions/functions/window/Lag.java | 3 +- .../trees/expressions/functions/window/Lead.java | 3 +- .../org/apache/doris/persist/AlterViewInfo.java | 4 + .../java/org/apache/doris/persist/EditLog.java | 7 +- .../resource/workloadgroup/WorkloadGroupMgr.java | 5 +- gensrc/thrift/FrontendService.thrift | 4 +- .../data/nereids_p0/aggregate/window_funnel.out | 3 + .../test_full_compaction_with_ordered_data.groovy | 208 +++++++++++++++++++++ .../nereids_p0/aggregate/window_funnel.groovy | 21 +++ .../window_functions/test_lead_lag_nullable.groovy | 80 ++++++++ .../test_auto_partition_behavior.groovy | 2 +- 25 files changed, 494 insertions(+), 58 deletions(-) create mode 100644 regression-test/suites/fault_injection_p0/test_full_compaction_with_ordered_data.groovy create mode 100644 regression-test/suites/nereids_p0/sql_functions/window_functions/test_lead_lag_nullable.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org