This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a change to branch auto-pick-50628-branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
omit a6403325b3f [fix](ubsan) fix ubsan error in DataTypeHLL::serialize
(#50628)
add f35cc6a5c5d branch-3.0: [fix](constant fold)Make sure FE cast double
to varchar generate identical result with BE. #50425 (#50666)
add 54fb444b4e4 branch-3.0: [fix](function) fix error result when input
utf8 in url_encode, strright, append_trailing_char_if_absent #49127 (#50659)
add e9d14da87cf branch-3.0: [fix](Nereids) fix unix_timestamp #49686
(#50670)
add 663ef81ffe9 [enhancement](cloud) make file cache background task
interval configu… (#50646)
add 6862d2ed7d6 branch-3.0: [fix](planner) return explicit error msg when
falling back to old planner (#50677)
add 778bb38a7d1 branch-3.0: [fix](binlog) Acquire migration lock before
ingesting binlog #50663 (#50708)
add 7dbec0d9b2f [bugfix](becore) pipeline core when workload group
shutdown (#50743)
add 329b2995e27 branch-3.0: [fix](regression)Fix test analyze mv case.
#50701 (#50731)
add b33d1a8a0c1 branch-3.0: [enhance](mtmv)Exclude trigger table support
db and catalog #49961 (#50553)
add eaa8209ab5d branch-3.0: [fix](memory) Fix `PODArray::add_num_element`
#50756 (#50781)
add 99f4124f251 branch-3.0: [improve](udf) support list/map basic class
for array/map type #50684 (#50752)
add e3e3f8f3d08 [improvement](test) if run cloud mode, give user usage
priv on comput… (#50642)
add 6f570edd539 branch-3.0: [fix](http) remove file before downloading
#50754 (#50824)
add 1d697dcf45a branch-3.0: [improvement](regression)Add log to print jdbc
url in prepare stmt test #50711 (#50728)
add 338c256a6bc [refactor](vault) Refine create storage vault process on
FE and fix missing S3 vault root path (#50395) (#50790)
add 70a44489e23 branch-3.0: [Fix](cloud-mow) Rollup task should retry when
encouter TXN_CONFILCT in cloud mode #50705 (#50836)
add 4bc9ddcb271 branch-3.0: [Fix](recycler) Fix transaction label
recycling to prevent key cleanup failures and 'key not found' errors #50766
(#50814)
add 35084362516 branch-3.0: [fix](regress) fix join_condition #50719
(#50739)
add 6ef9a8ca330 branch-3.0: [Fix](group commit) Fix group commit null map
#50713 (#50813)
add 03c1235d9a2 branch-3.0: [chore](cloud) Remove set -eo pipefail when
start ms #50679 (#50693)
add 7990a70c54a [fix](ubsan) fix ubsan error in DataTypeHLL::serialize
(#50628)
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 (a6403325b3f)
\
N -- N -- N refs/heads/auto-pick-50628-branch-3.0 (7990a70c54a)
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/http/http_client.cpp | 7 ++
be/src/io/cache/block_file_cache.cpp | 8 +-
be/src/pipeline/task_queue.cpp | 2 -
be/src/service/backend_service.cpp | 21 ++--
be/src/util/url_coding.cpp | 4 +-
be/src/vec/common/pod_array.h | 6 +-
be/src/vec/functions/function_string.cpp | 73 ++++++-----
be/src/vec/functions/function_string.h | 6 +-
be/test/io/cache/block_file_cache_test.cpp | 14 +--
be/test/vec/common/pod_array_test.cpp | 26 ++++
be/test/vec/function/function_string_test.cpp | 24 ++++
cloud/script/start.sh | 2 -
cloud/src/recycler/recycler.cpp | 8 +-
cloud/test/recycler_test.cpp | 55 +++++++++
.../doris/common/jni/utils/JavaUdfDataType.java | 4 +-
.../main/java/org/apache/doris/catalog/Type.java | 8 +-
.../java/org/apache/doris/alter/RollupJobV2.java | 13 +-
.../org/apache/doris/alter/SchemaChangeJobV2.java | 5 +-
.../doris/analysis/CreateStorageVaultStmt.java | 13 +-
.../java/org/apache/doris/analysis/TableName.java | 25 ++++
.../org/apache/doris/catalog/HdfsStorageVault.java | 64 ++++++----
.../main/java/org/apache/doris/catalog/MTMV.java | 11 +-
.../org/apache/doris/catalog/S3StorageVault.java | 32 ++++-
.../org/apache/doris/catalog/StorageVault.java | 18 ++-
.../org/apache/doris/catalog/StorageVaultMgr.java | 10 +-
.../doris/datasource/hive/source/HiveScanNode.java | 4 +
.../org/apache/doris/load/GroupCommitManager.java | 4 +-
.../org/apache/doris/mtmv/MTMVPartitionUtil.java | 51 +++++++-
.../java/org/apache/doris/mtmv/MTMVService.java | 13 +-
.../expression/rules/FoldConstantRuleOnFE.java | 23 ++++
.../executable/DateTimeExtractAndTransform.java | 8 +-
.../trees/expressions/literal/DoubleLiteral.java | 30 +++++
.../plans/commands/AlterStorageVaultCommand.java | 4 +-
.../doris/cloud/catalog/HdfsStorageVaultTest.java | 23 ++--
.../apache/doris/mtmv/MTMVPartitionUtilTest.java | 78 ++++++++++++
.../org/apache/doris/mtmv/MTMVRewriteUtilTest.java | 11 +-
.../java/org/apache/doris/mtmv/MTMVTaskTest.java | 7 +-
.../test/java/org/apache/doris/mtmv/MTMVTest.java | 31 +++++
.../expressions/literal/DoubleLiteralTest.java | 49 ++++++++
.../cloud/test_cloud_mow_sync_mv.out} | Bin 419 -> 454 bytes
.../data/javaudf_p0/test_javaudf_array.out | Bin 1725 -> 1891 bytes
.../data/javaudf_p0/test_javaudf_map.out | Bin 279 -> 402 bytes
.../test_excluded_trigger_table_mtmv.out} | Bin 294 -> 333 bytes
.../udf/{BigintTest.java => ArrayListTest.java} | 8 +-
.../doris/udf/{BigintTest.java => MapsiTest.java} | 8 +-
.../cloud/test_cloud_mow_sync_mv.groovy | 115 ++++++++++++++++++
.../suites/javaudf_p0/test_javaudf_array.groovy | 9 ++
.../suites/javaudf_p0/test_javaudf_map.groovy | 25 ++++
.../test_excluded_trigger_table_mtmv.groovy | 135 +++++++++++++++++++++
.../fold_constant_date_arithmatic.groovy | 17 +++
.../fold_constant_string_arithmatic.groovy | 107 +++++++++++++++-
.../suites/nereids_syntax_p0/join_condition.groovy | 36 +++---
.../suites/nereids_syntax_p0/runtime_filter.groovy | 42 +++----
.../suites/prepared_stmt_p0/prepared_stmt.groovy | 1 +
.../suites/statistics/test_analyze_mv.groovy | 16 +++
.../vault_p0/create/test_create_vault.groovy | 67 ++++++++--
56 files changed, 1167 insertions(+), 214 deletions(-)
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/nereids/trees/expressions/literal/DoubleLiteralTest.java
copy regression-test/data/{mv_p0/unique_rewrite/unique_rewrite.out =>
fault_injection_p0/cloud/test_cloud_mow_sync_mv.out} (70%)
copy regression-test/data/{backup_restore/test_backup_restore_alias.out =>
mtmv_p0/test_excluded_trigger_table_mtmv.out} (51%)
copy
regression-test/java-udf-src/src/main/java/org/apache/doris/udf/{BigintTest.java
=> ArrayListTest.java} (86%)
copy
regression-test/java-udf-src/src/main/java/org/apache/doris/udf/{BigintTest.java
=> MapsiTest.java} (85%)
create mode 100644
regression-test/suites/fault_injection_p0/cloud/test_cloud_mow_sync_mv.groovy
create mode 100644
regression-test/suites/mtmv_p0/test_excluded_trigger_table_mtmv.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]