This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a change to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


    from 8f0552ee613 [fix](Nereids) remove db readlock before get table from db 
(#38660)
     new 1814729ba8f [fix](local exchange) Fix local exchange blocked by a huge 
data block (#38657)
     new 8c3c82f8570 [fix](nereids) fix The children format needs to be 
[WhenClause+, DefaultValue?] (#38491)
     new 744809cce19 [bug](expr)fix operator do_projections should use 
local_state intermediate_projections (#38612)
     new b6dac2c6a43 (cloud-merge)  Supports online capacity expansion and 
contraction (#37484)
     new e6798797324 [Improvement](schema scan) Use async scanner for schema 
scanners (#38403)
     new 6295f4052ff [fix](mtmv) Choose a valid partition column when there are 
both valid and invalid expressions (#38367)
     new 238b8fba1d3 [Fix](nereids) fix normalize repeat alias rewrite (#38166)
     new f2b83356314 [Feat](nereids) Support date_trunc function in partition 
prune (#38025)

The 8 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/exec/schema_scanner.cpp                     |  69 ++-
 be/src/exec/schema_scanner.h                       |  24 +-
 .../schema_active_queries_scanner.cpp              |   2 +-
 .../schema_scanner/schema_active_queries_scanner.h |   2 +-
 .../schema_scanner/schema_backend_active_tasks.cpp |   3 +-
 .../schema_scanner/schema_backend_active_tasks.h   |   2 +-
 .../schema_scanner/schema_charsets_scanner.cpp     |   2 +-
 .../exec/schema_scanner/schema_charsets_scanner.h  |   2 +-
 .../schema_scanner/schema_collations_scanner.cpp   |   2 +-
 .../schema_scanner/schema_collations_scanner.h     |   2 +-
 .../exec/schema_scanner/schema_columns_scanner.cpp |   2 +-
 .../exec/schema_scanner/schema_columns_scanner.h   |   2 +-
 .../exec/schema_scanner/schema_dummy_scanner.cpp   |   2 +-
 be/src/exec/schema_scanner/schema_dummy_scanner.h  |   2 +-
 .../exec/schema_scanner/schema_files_scanner.cpp   |   2 +-
 be/src/exec/schema_scanner/schema_files_scanner.h  |   2 +-
 .../schema_metadata_name_ids_scanner.cpp           |   2 +-
 .../schema_metadata_name_ids_scanner.h             |   2 +-
 .../schema_scanner/schema_partitions_scanner.cpp   |   2 +-
 .../schema_scanner/schema_partitions_scanner.h     |   2 +-
 .../schema_scanner/schema_processlist_scanner.cpp  |   2 +-
 .../schema_scanner/schema_processlist_scanner.h    |   2 +-
 .../schema_scanner/schema_profiling_scanner.cpp    |   2 +-
 .../exec/schema_scanner/schema_profiling_scanner.h |   2 +-
 .../exec/schema_scanner/schema_routine_scanner.cpp |   2 +-
 .../exec/schema_scanner/schema_routine_scanner.h   |   2 +-
 .../exec/schema_scanner/schema_rowsets_scanner.cpp |   2 +-
 .../exec/schema_scanner/schema_rowsets_scanner.h   |   2 +-
 .../schema_schema_privileges_scanner.cpp           |   2 +-
 .../schema_schema_privileges_scanner.h             |   2 +-
 .../schema_scanner/schema_schemata_scanner.cpp     |   2 +-
 .../exec/schema_scanner/schema_schemata_scanner.h  |   2 +-
 .../schema_table_options_scanner.cpp               |   2 +-
 .../schema_scanner/schema_table_options_scanner.h  |   2 +-
 .../schema_table_privileges_scanner.cpp            |   2 +-
 .../schema_table_privileges_scanner.h              |   2 +-
 .../exec/schema_scanner/schema_tables_scanner.cpp  |   2 +-
 be/src/exec/schema_scanner/schema_tables_scanner.h |   2 +-
 .../schema_user_privileges_scanner.cpp             |   2 +-
 .../schema_user_privileges_scanner.h               |   2 +-
 be/src/exec/schema_scanner/schema_user_scanner.cpp |   2 +-
 be/src/exec/schema_scanner/schema_user_scanner.h   |   2 +-
 .../schema_scanner/schema_variables_scanner.cpp    |   2 +-
 .../exec/schema_scanner/schema_variables_scanner.h |   2 +-
 .../exec/schema_scanner/schema_views_scanner.cpp   |   2 +-
 be/src/exec/schema_scanner/schema_views_scanner.h  |   2 +-
 .../schema_workload_groups_scanner.cpp             |   2 +-
 .../schema_workload_groups_scanner.h               |   2 +-
 .../schema_workload_sched_policy_scanner.cpp       |   3 +-
 .../schema_workload_sched_policy_scanner.h         |   2 +-
 be/src/http/action/clear_file_cache_action.cpp     |  40 --
 be/src/http/action/clear_file_cache_action.h       |  32 --
 be/src/http/action/file_cache_action.cpp           |  54 ++-
 be/src/io/cache/block_file_cache.cpp               |  69 ++-
 be/src/io/cache/block_file_cache.h                 |  10 +-
 be/src/io/cache/block_file_cache_factory.cpp       |  19 +-
 be/src/io/cache/block_file_cache_factory.h         |   9 +
 be/src/io/cache/file_cache_common.cpp              |   1 +
 be/src/olap/options.cpp                            |   9 +-
 be/src/pipeline/dependency.h                       |  16 +-
 be/src/pipeline/exec/operator.cpp                  |   2 +-
 be/src/pipeline/exec/schema_scan_operator.cpp      |   9 +-
 be/src/pipeline/exec/schema_scan_operator.h        |  14 +-
 .../local_exchange/local_exchange_sink_operator.h  |   2 +
 .../local_exchange_source_operator.cpp             |   6 +-
 .../local_exchange_source_operator.h               |   2 +
 be/src/pipeline/local_exchange/local_exchanger.cpp | 115 ++---
 be/src/pipeline/local_exchange/local_exchanger.h   |  14 +
 be/src/pipeline/pipeline_task.cpp                  |   2 -
 be/src/service/http_service.cpp                    |  14 +-
 be/test/io/cache/block_file_cache_test.cpp         |  88 +++-
 .../nereids/rules/analysis/NormalizeRepeat.java    |  46 +-
 .../exploration/mv/MaterializedViewUtils.java      |  14 +-
 .../rules/expression/rules/ColumnRange.java        |   8 +
 .../rules/OneRangePartitionEvaluator.java          | 315 +++++++-----
 .../rules/expression/rules/PartitionSlotInput.java |   5 +-
 ...ullableOnDateLikeV2Args.java => Monotonic.java} |  27 +-
 .../expressions/functions/scalar/DateTrunc.java    |  19 +-
 .../visitor/DefaultExpressionRewriter.java         |   7 +
 .../apache/doris/nereids/util/ExpressionUtils.java |   9 +
 .../exploration/mv/MaterializedViewUtilsTest.java  |  49 ++
 .../data/javaudf_p0/test_javaudf_string.out        |  22 +
 .../grouping_sets/grouping_alias_test.out          | 531 +++++++++++++++++++++
 .../cache/compaction/test_stale_rowset.groovy      |   6 +-
 .../cloud_p0/cache/http/test_clear_cache.groovy    |   5 +-
 .../cache/http/test_clear_cache_async.groovy       |   5 +-
 .../test_reset_capacity.groovy}                    | 183 +++++--
 .../multi_cluster/read_write/sync_insert.groovy    |   6 +-
 .../read_write/test_multi_stale_rowset.groovy      |   4 +-
 .../warm_up/cluster/test_warm_up_cluster.groovy    |   4 +-
 .../cluster/test_warm_up_cluster_batch.groovy      |   6 +-
 .../cluster/test_warm_up_cluster_bigsize.groovy    |   6 +-
 .../cluster/test_warm_up_cluster_empty.groovy      |   6 +-
 .../warm_up/table/test_warm_up_partition.groovy    |   6 +-
 .../warm_up/table/test_warm_up_table.groovy        |   4 +-
 .../warm_up/table/test_warm_up_tables.groovy       |   6 +-
 .../suites/cloud_p0/cache/ttl/alter_ttl_1.groovy   |   6 +-
 .../suites/cloud_p0/cache/ttl/alter_ttl_2.groovy   |   6 +-
 .../suites/cloud_p0/cache/ttl/alter_ttl_3.groovy   |   6 +-
 .../suites/cloud_p0/cache/ttl/alter_ttl_4.groovy   |   6 +-
 .../cloud_p0/cache/ttl/alter_ttl_max_int64.groovy  |   6 +-
 .../cloud_p0/cache/ttl/alter_ttl_random.groovy     |   6 +-
 .../cloud_p0/cache/ttl/alter_ttl_seconds.groovy    |   6 +-
 .../cache/ttl/create_table_as_select.groovy        |   6 +-
 .../cloud_p0/cache/ttl/create_table_like.groovy    |   6 +-
 .../suites/cloud_p0/cache/ttl/test_ttl.groovy      |   6 +-
 .../cloud_p0/cache/ttl/test_ttl_preempt.groovy     |   6 +-
 .../suites/javaudf_p0/test_javaudf_string.groovy   |  20 +-
 .../grouping_sets/grouping_alias_test.groovy       | 111 +++++
 .../partition_prune/test_date_trunc_prune.groovy   | 296 ++++++++++++
 .../suites/nereids_syntax_p0/join.groovy           |  38 ++
 111 files changed, 2048 insertions(+), 500 deletions(-)
 delete mode 100644 be/src/http/action/clear_file_cache_action.cpp
 delete mode 100644 be/src/http/action/clear_file_cache_action.h
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/{PropagateNullableOnDateLikeV2Args.java
 => Monotonic.java} (59%)
 create mode 100644 
regression-test/data/nereids_rules_p0/grouping_sets/grouping_alias_test.out
 copy regression-test/suites/cloud_p0/cache/{ttl/test_ttl_preempt.groovy => 
http/test_reset_capacity.groovy} (51%)
 create mode 100644 
regression-test/suites/nereids_rules_p0/grouping_sets/grouping_alias_test.groovy
 create mode 100644 
regression-test/suites/nereids_rules_p0/partition_prune/test_date_trunc_prune.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to