This is an automated email from the ASF dual-hosted git repository. kxiao pushed a change to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
from 4bb7fbf258 [improve](tablet schema) add config to modify tablet schema recycle interval (#24602) new 832e18d092 [Fix](binlog) Add more log for ingest_binlog && Fix ingest_binlog not rewrite rowset_meta tablet_uid (#24617) new fd4ce5e3c7 [test](config) change desired_max_waiting_jobs in regression pipeline (#24710) new 62ca3be8be [fix](index compaction)ignore doc which dose not exist in destination segment (#24729) new 253b839220 [bug](node)fix dense_rank function in partition sort node return wrong rows (#24727) new 9b6dd8118f [fix](start_be) ignore output from command -v (#24739) new 0fb935d475 [Improve](count on index) improve performance for count on index other than match (#24678) new a3cecb31c3 [enhancement](schema) Add schema consistency check when add partition (#24707) new e10d58f75c [enhancement](delete) avoid null txn state after delete job committed (#24741) new aadbefacb2 [enhancement](config) do not abort when a disk is broken (#24692) new 8c07312ee0 [minor](test) Add some ut for optimizer rule (#24562) new 0e67d8b71b Revert "[feature](function) add json->operator convert to json_extract (#19899)" (#24679) new 15ebebbe60 [fix](datetime) fix compare of DatetimeLiteral (#24343) new e5b98d1246 [fix](compile) failed on arm platform, with clang compiler and pch on (#24636) pick from @gohalo The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: be/src/clucene | 2 +- be/src/common/config.cpp | 2 +- .../glibc-compatibility/musl/aarch64/atomic_arch.h | 2 +- be/src/glibc-compatibility/musl/atomic.h | 2 +- be/src/olap/compaction.cpp | 6 +- be/src/pch/pch.h | 10 +- be/src/service/backend_service.cpp | 10 +- be/src/vec/common/sort/partition_sorter.cpp | 39 ++++--- be/src/vec/common/sort/partition_sorter.h | 1 + bin/start_be.sh | 2 +- fe/fe-core/src/main/cup/sql_parser.cup | 8 -- .../org/apache/doris/analysis/DateLiteral.java | 2 +- .../apache/doris/datasource/InternalCatalog.java | 38 +++++++ .../java/org/apache/doris/load/DeleteHandler.java | 13 +-- .../rules/implementation/AggregateStrategies.java | 39 ++++--- .../doris/analysis/LiteralExprCompareTest.java | 24 ++-- .../SimplifyArithmeticComparisonRuleTest.java | 55 ++++++++++ .../expression/rules/SimplifyCastRuleTest.java | 60 ++++++++++ .../rules/SimplifyDecimalV3ComparisonTest.java | 56 ++++++++++ .../rules/rewrite/ExistsApplyToJoinTest.java | 121 +++++++++++++++++++++ .../data/datatype_p0/datetimev2/test_exprs.out | 6 + .../json_functions/test_json_function.out | 21 ---- .../test_select_stddev_variance_window.out | 68 ++++++++++++ regression-test/pipeline/p0/conf/fe.conf | 1 + .../datatype_p0/datetimev2/test_exprs.groovy | 3 + .../json_functions/test_json_function.groovy | 8 -- .../test_select_stddev_variance_window.groovy | 24 ++++ 27 files changed, 518 insertions(+), 105 deletions(-) create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyArithmeticComparisonRuleTest.java create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyCastRuleTest.java create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/rules/expression/rules/SimplifyDecimalV3ComparisonTest.java create mode 100644 fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/ExistsApplyToJoinTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org