This is an automated email from the ASF dual-hosted git repository. w41ter pushed a change to branch auto-pick-47557-branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
discard 0f2a7a02951 [feat](binlog) Support getting binlogs in batch (#47557) add e681c055a49 [chore](binlog) Log download binlog cost (#47360) (#47575) add e47b3981235 branch-2.1: [chore](binlog) Add download binlog related configs to BE #47412 (#47585) add 3f250e55ce6 branch-2.1: [Enhancement](regression-test)Add regression test for database properties backup and restore #41925 (#47643) add 8ff4ae879e4 branch-2.1: [fix](nereids) fix compare ipv4 / ipv6 always equals (#47514) add f4e92d75f51 [branch-2.1] fix select * from variables system table (#34529) (#47660) add 470030b8782 [feat](clone) Speed clone tablet via batch small file downloading #45061 (#45218) add 6ceb0101956 branch-2.1: [fix](mv)Fix direct select mv pre agg bug. #47658 (#47700) add 9eb6c2fa603 [fix](jni) pass krb5 conf to jni (#47679) add e8ba7ddba7b [feat](binlog) Support getting binlogs in batch (#47557) 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 (0f2a7a02951) \ N -- N -- N refs/heads/auto-pick-47557-branch-2.1 (e8ba7ddba7b) 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 | 6 + be/src/common/config.h | 6 + .../schema_scanner/schema_variables_scanner.cpp | 37 ++- be/src/gutil/strings/stringpiece.h | 6 + be/src/http/action/batch_download_action.cpp | 216 ++++++++++++++++++ ...oad_binlog_action.h => batch_download_action.h} | 31 ++- be/src/http/action/cooldown_action.cpp.bak | 75 +++++++ .../action/{meta_action.h => cooldown_action.h} | 19 +- be/src/http/action/download_binlog_action.cpp | 3 - be/src/http/http_channel.cpp | 56 ++++- be/src/http/http_channel.h | 8 + be/src/http/http_client.cpp | 247 +++++++++++++++++++-- be/src/http/http_client.h | 5 + be/src/http/utils.cpp | 130 ++++++++++- be/src/http/utils.h | 16 +- be/src/olap/task/engine_clone_task.cpp | 149 +++++++++++-- be/src/olap/task/engine_clone_task.h | 3 + be/src/runtime/snapshot_loader.cpp | 21 +- be/src/service/backend_service.cpp | 63 ++++-- be/src/service/http_service.cpp | 10 + be/src/util/jni-util.cpp | 11 +- be/test/http/http_client_test.cpp | 101 ++++++++- fe/fe-core/pom.xml | 6 + .../org/apache/doris/analysis/DateLiteral.java | 2 +- .../org/apache/doris/analysis/DecimalLiteral.java | 3 + .../org/apache/doris/analysis/FloatLiteral.java | 3 + .../org/apache/doris/analysis/IPv4Literal.java | 14 +- .../org/apache/doris/analysis/IPv6Literal.java | 20 +- .../java/org/apache/doris/analysis/IntLiteral.java | 10 +- .../doris/nereids/rules/analysis/BindRelation.java | 4 +- .../trees/expressions/ComparisonPredicate.java | 2 + .../apache/doris/service/FrontendServiceImpl.java | 11 +- .../doris/common/proc/IndexesProcNodeTest.java | 2 +- .../expressions/literal/CompareLiteralTest.java | 97 ++++++++ .../apache/doris/utframe/TestWithFeService.java | 10 + gensrc/thrift/FrontendService.thrift | 2 +- .../test_analyze_mv.out} | Bin 109 -> 124 bytes .../data/variable_p0/set_and_unset_variable.out | Bin 2588 -> 2680 bytes ...=> test_backup_store_with_db_properties.groovy} | 43 ++-- ...test_backup_store_with_db_properties_kv.groovy} | 48 ++-- .../nereids_p0/literal/test_compare_literal.groovy | 153 +++++++++++++ .../suites/statistics/test_analyze_mv.groovy | 19 ++ .../variable_p0/set_and_unset_variable.groovy | 4 + 43 files changed, 1524 insertions(+), 148 deletions(-) create mode 100644 be/src/http/action/batch_download_action.cpp copy be/src/http/action/{download_binlog_action.h => batch_download_action.h} (50%) create mode 100644 be/src/http/action/cooldown_action.cpp.bak copy be/src/http/action/{meta_action.h => cooldown_action.h} (69%) create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/literal/CompareLiteralTest.java copy regression-test/data/{correctness/test_crossjoin_inlineview_slot.out => statistics/test_analyze_mv.out} (77%) copy regression-test/suites/backup_restore/{test_backup_restore_multi_tables.groovy => test_backup_store_with_db_properties.groovy} (66%) copy regression-test/suites/backup_restore/{test_backup_restore_multi_tables.groovy => test_backup_store_with_db_properties_kv.groovy} (63%) create mode 100644 regression-test/suites/nereids_p0/literal/test_compare_literal.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org