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 41fcebaf5b fix fe compile error
     new 928d71efe2 [fix]Add  logging before _builtin_unreachable() (#24101)
     new 77a1b3f122 [Fix](Parquet Reader) fix parquet read issue (#24092)
     new 93a83b54dd [fix](tablet clone) delete tablet check other catchup #24038
     new d66324266f [fix](tablet clone) fix be load rebalancer choose candidate 
tablets #23915
     new 8bed900f05 [improvement](executor)Add name for task scheduler #23983
     new eec1418f74 [Optimize](invert index) Optimize multiple terms 
conjunction query (#23871)
     new a4abcee6c0 [bug](explode) fix table node not implement alloc_resource 
function (#24031)
     new 5d682156b4 [bugfix](insert into) should not send profile during report 
process (#24127)
     new 1508b92ff2 [enhancement](config): Change root log level to info in 
broker log (#24023)
     new 93f836d6db [refactor](nereids) print "ifnull" instead of "nvl" in 
explain #23979
     new d5c6c7a034 [opt](nereids)push down filter through window #23935
     new e90b8843a4 [fix](planner)ctas's query part is not analyzed correctly 
(#24111)
     new 1df24a7e35 [fix](Nereids) mv in select materialized_view should 
disable show table (#24104)
     new c98238e4f7 fix fe compile error

The 14 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/io/file_factory.h                           |   1 +
 be/src/olap/rowset/segment_v2/column_reader.cpp    |   6 +-
 be/src/olap/rowset/segment_v2/column_reader.h      |   4 +-
 .../inverted_index/query/conjunction_query.cpp     | 169 ++++++++++++++
 .../inverted_index/query/conjunction_query.h       |  63 +++++
 .../olap/rowset/segment_v2/inverted_index_cache.h  |   6 +
 .../segment_v2/inverted_index_compaction.cpp       |   3 +-
 .../rowset/segment_v2/inverted_index_reader.cpp    | 256 +++++++++++----------
 .../olap/rowset/segment_v2/inverted_index_reader.h |  58 +++--
 .../rowset/segment_v2/inverted_index_writer.cpp    |  13 +-
 be/src/olap/rowset/segment_v2/segment.cpp          |   4 +-
 be/src/olap/rowset/segment_v2/segment.h            |   3 +-
 be/src/olap/rowset/segment_v2/segment_iterator.cpp |   2 +-
 be/src/pipeline/pipeline_fragment_context.cpp      |   5 +-
 be/src/pipeline/pipeline_task.h                    |   1 +
 be/src/pipeline/task_scheduler.cpp                 |   2 +-
 be/src/pipeline/task_scheduler.h                   |   6 +-
 be/src/runtime/exec_env_init.cpp                   |   6 +-
 be/src/runtime/memory/mem_tracker_limiter.h        |   1 +
 be/src/runtime/plan_fragment_executor.cpp          |   1 -
 be/src/runtime/runtime_state.h                     |   4 +-
 be/src/service/doris_main.cpp                      |   1 +
 be/src/util/binary_cast.hpp                        |   1 +
 be/src/util/expected.hpp                           |   1 +
 be/src/util/timezone_utils.cpp                     |   1 +
 .../aggregate_functions/aggregate_function_map.h   |   8 +-
 be/src/vec/common/hash_table/hash_table.h          |   5 +-
 be/src/vec/common/hash_table/string_hash_table.h   |   1 +
 be/src/vec/core/types.h                            |   1 +
 be/src/vec/data_types/data_type_decimal.h          |   1 +
 be/src/vec/data_types/data_type_number_base.cpp    |   1 +
 be/src/vec/data_types/data_type_number_base.h      |   1 +
 .../vec/data_types/serde/data_type_decimal_serde.h |   1 +
 .../vec/exec/format/parquet/parquet_thrift_util.h  |   4 +-
 be/src/vec/exec/vtable_function_node.h             |   5 +-
 .../vec/functions/array/function_array_apply.cpp   |   1 +
 be/src/vec/functions/function_cast.h               |   2 +-
 be/src/vec/functions/round.h                       |   8 +-
 .../doris/analysis/CreateTableAsSelectStmt.java    |   6 +
 .../java/org/apache/doris/analysis/QueryStmt.java  |   1 +
 .../org/apache/doris/clone/BeLoadRebalancer.java   |   2 +-
 .../org/apache/doris/clone/TabletScheduler.java    |  13 +-
 .../doris/nereids/jobs/executor/Rewriter.java      |   4 +-
 .../org/apache/doris/nereids/rules/RuleSet.java    |   7 +-
 ...dow.java => CreatePartitionTopNFromWindow.java} |   5 +-
 .../rules/rewrite/PushdownFilterThroughWindow.java | 138 +++--------
 .../mv/AbstractSelectMaterializedIndexRule.java    |  18 +-
 .../trees/expressions/functions/scalar/Nvl.java    |   2 +-
 .../nereids/trees/plans/logical/LogicalWindow.java |  33 +++
 .../java/org/apache/doris/qe/SessionVariable.java  |  31 ++-
 .../java/org/apache/doris/qe/StmtExecutor.java     |   4 +
 ...va => GeneratePartitionTopnFromWindowTest.java} |   6 +-
 ...st.java => PushdowFilterThroughWindowTest.java} |  78 ++-----
 .../rules/rewrite/mv/SelectMvIndexTest.java        | 189 ++++++++-------
 .../apache_hdfs_broker/conf/log4j.properties       |   2 +-
 gensrc/thrift/PaloInternalService.thrift           |  16 ++
 ...oin_should_not_reorder.out => test_ctas_mv.out} |   1 +
 .../push_filter_through_window.out                 |  46 ++++
 .../suites/correctness_p0/test_ctas_mv.groovy      | 104 +++++++++
 .../push_filter_through_window.groovy              |  55 +++++
 61 files changed, 986 insertions(+), 434 deletions(-)
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query/conjunction_query.cpp
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query/conjunction_query.h
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/{PushdownFilterThroughWindow.java
 => CreatePartitionTopNFromWindow.java} (98%)
 copy 
fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/{PushdownFilterThroughWindowTest.java
 => GeneratePartitionTopnFromWindowTest.java} (96%)
 rename 
fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/{PushdownFilterThroughWindowTest.java
 => PushdowFilterThroughWindowTest.java} (53%)
 copy regression-test/data/correctness_p0/{test_join_should_not_reorder.out => 
test_ctas_mv.out} (80%)
 create mode 100644 
regression-test/data/nereids_syntax_p0/push_filter_through_window.out
 create mode 100644 regression-test/suites/correctness_p0/test_ctas_mv.groovy
 create mode 100644 
regression-test/suites/nereids_syntax_p0/push_filter_through_window.groovy


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to