This is an automated email from the ASF dual-hosted git repository. w41ter pushed a change to branch auto-pick-47416-branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
omit 6b489b023ba [fix](backup) filter the staled task response by job id (#47416) add 5240e6fd361 branch-2.1: [regression-test](case) audit log case #47456 (#47485) add 328d23a825c branch-2.1: [fix](case)rm hms event use_meta_chache is false case. #47457 (#47492) add 209ddb374e7 branch-2.1: [chore](io) Add debug log for critical file operations #46770 (#46859) add 0cd25578822 branch-2.1: [Fix]Fix double-free when memtable agg #47523 (#47532) add 226f848ad8a branch-2.1: [fix](hive docker)Table `partition_location_1` miss data #47539 (#47559) add 9d3ee27e557 branch-2.1: [fix](restore) Add a local snapshot lock to protect snapshot dir #47279 (#47574) add 45c9daa0638 branch-2.1:[fix](docker) Starting thirdpaty script with only the res… (#47592) add 800288b7feb [branch-2.1](FoldFE) pick special date arithmetics of #37376 and #37766 (#47616) add 3ec723f2cb7 branch-2.1: [fix](prepared statement) fix protocol with TIME datatype #47389 (#47543) add b4f00be528b branch-2.1: [fix](restore) Make the DirMoveTask idempotent. #47313 (#47584) 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 fd1615bac0d [fix](backup) filter the staled task response by job id (#47416) 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 (6b489b023ba) \ N -- N -- N refs/heads/auto-pick-47416-branch-2.1 (fd1615bac0d) 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 | 4 + be/src/common/config.h | 4 + .../schema_scanner/schema_variables_scanner.cpp | 37 ++++- be/src/io/fs/local_file_system.cpp | 9 ++ be/src/olap/memtable.cpp | 2 - be/src/olap/snapshot_manager.cpp | 33 ++++- be/src/olap/snapshot_manager.h | 50 +++++++ be/src/runtime/snapshot_loader.cpp | 144 +++++++++++-------- be/src/service/backend_service.cpp | 63 ++++++--- be/src/util/mysql_row_buffer.cpp | 80 +++++++++-- be/test/util/mysql_row_buffer_test.cpp | 140 +++++++++++++++++++ .../partition_location_1/create_table.hql | 2 +- docker/thirdparties/run-thirdparties-docker.sh | 18 ++- 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 +- .../trees/expressions/ComparisonPredicate.java | 2 + .../executable/DateTimeExtractAndTransform.java | 70 ++++++---- .../trees/expressions/literal/DateLiteral.java | 15 ++ .../apache/doris/service/FrontendServiceImpl.java | 11 +- .../doris/common/proc/IndexesProcNodeTest.java | 2 +- .../functions/DateTimeExtractAndTransformTest.java | 118 ++++++++++++---- .../expressions/literal/CompareLiteralTest.java | 97 +++++++++++++ .../apache/doris/utframe/TestWithFeService.java | 10 ++ gensrc/thrift/FrontendService.thrift | 2 +- .../data/variable_p0/set_and_unset_variable.out | Bin 2588 -> 2680 bytes .../suites/audit/test_audit_log_behavior.groovy | 52 ++++--- ...=> test_backup_store_with_db_properties.groovy} | 43 +++--- ...test_backup_store_with_db_properties_kv.groovy} | 48 ++++--- .../hive/test_hms_event_notification.groovy | 2 +- ...est_hms_event_notification_multi_catalog.groovy | 3 +- .../nereids_p0/literal/test_compare_literal.groovy | 153 +++++++++++++++++++++ .../variable_p0/set_and_unset_variable.groovy | 4 + 37 files changed, 1032 insertions(+), 244 deletions(-) create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/literal/CompareLiteralTest.java 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