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

yiguolei pushed a change to branch auto-pick-59394-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 3e3d159bd4c [feature](search) introduce lucene bool mode for search 
function (#59394)
     add aae5957dfa2 [Chore](query) add _query_ctx_map_delay_delete (#59262) 
(#56911) (#59638)
     add c992307c331 branch-4.0: [fix](pipeline)Fix set_operation not correctly 
setting shuffled_operator #59293 (#59702)
     add 0cf97f451bd branch-4.0: [fix](agg) fix rule merge_aggregate #59629 
(#59663)
     add 658c14e4d26 branch-4.0: [cloud](fdb) Fix missing backup agent in 
fdb.conf of fdb_ctl.sh #59641 (#59753)
     add 681d0b890fc branch-4.0: [Opt](cloud) cache table version for cloud 
mode #59339 (#59442)
     add cb4d81366a8 branch-4.0: [fix](parquet)fix hudi parquet read 
hoodie.datasource.write.drop.partition.columns prop table cause be core. #58532 
(#59749)
     add f6ebcb83600 [chore](be) remove all LRU Cache default value (#59556) 
(#59751)
     add 00503bc74ea branch-4.0: [optimize](parquet-reader) Optimize 
performance by parquet bloom filter. (#59727)
     add 2ded0048952 [fix](fe) add compatible code for LocalTablet and 
LocalReplica (#59771)
     add 05c063d7324 branch-4.0: [feature](inverted index) Implement es-like 
boolean query #58545 (#59766)
     add 0dfdf53b20b [feature](search) introduce lucene bool mode for search 
function (#59394)

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   (3e3d159bd4c)
            \
             N -- N -- N   refs/heads/auto-pick-59394-branch-4.0 (0dfdf53b20b)

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/cloud/cloud_tablet_mgr.cpp                  |   4 +-
 be/src/cloud/cloud_txn_delete_bitmap_cache.cpp     |   4 +-
 be/src/olap/column_predicate.h                     |   4 +
 be/src/olap/comparison_predicate.h                 |  71 ++-
 be/src/olap/in_list_predicate.h                    |  86 ++-
 be/src/olap/page_cache.h                           |  11 +-
 be/src/olap/rowset/segment_v2/bloom_filter.h       |   9 +-
 .../inverted_index/query_v2/all_query/all_query.h  | 112 ++++
 .../query_v2/boolean_query/boolean_query_builder.h |  84 +++
 .../query_v2/{operator.h => boolean_query/occur.h} |   2 +-
 .../query_v2/boolean_query/occur_boolean_query.h   |  75 +++
 .../boolean_query/occur_boolean_weight.cpp         | 287 +++++++++
 .../query_v2/boolean_query/occur_boolean_weight.h  |  88 +++
 .../query_v2/{ => boolean_query}/operator.h        |   0
 .../{boolean_query.h => operator_boolean_query.h}  |  41 +-
 ...{boolean_weight.h => operator_boolean_weight.h} |  12 +-
 .../inverted_index/query_v2/disjunction_scorer.cpp | 129 ++++
 .../inverted_index/query_v2/disjunction_scorer.h   |  66 ++
 .../segment_v2/inverted_index/query_v2/doc_set.h   |   4 +
 .../inverted_index/query_v2/exclude_scorer.cpp     |  86 +++
 .../{union/simple_union.h => exclude_scorer.h}     |  42 +-
 .../inverted_index/query_v2/intersection.cpp       | 206 ++++--
 .../inverted_index/query_v2/intersection.h         |  20 +-
 .../query_v2/phrase_query/multi_phrase_weight.h    |   3 +-
 .../query_v2/phrase_query/phrase_scorer.cpp        |  16 +-
 .../query_v2/phrase_query/phrase_scorer.h          |   7 +-
 .../query_v2/phrase_query/phrase_weight.h          |   6 +-
 .../query_v2/postings/loaded_postings.cpp          |   3 +-
 .../query_v2/regexp_query/regexp_weight.cpp        |   2 +-
 .../inverted_index/query_v2/reqopt_scorer.h        |  80 +++
 .../inverted_index/query_v2/segment_postings.h     | 195 ++++--
 .../segment_v2/inverted_index/query_v2/size_hint.h |  48 ++
 .../query_v2/term_query/term_scorer.h              |   5 +-
 .../query_v2/term_query/term_weight.h              |  23 +-
 .../query_v2/union/buffered_union.cpp              | 259 ++++++++
 .../inverted_index/query_v2/union/buffered_union.h |  65 ++
 .../inverted_index/query_v2/union/simple_union.cpp |   2 +-
 .../inverted_index/query_v2/union/simple_union.h   |   5 +
 .../segment_v2/inverted_index/query_v2/weight.h    |  20 +-
 .../segment_v2/inverted_index/util/tiny_set.h      |  34 +-
 .../olap/rowset/segment_v2/inverted_index_cache.h  |  17 +-
 be/src/olap/schema_cache.h                         |   4 +-
 be/src/olap/segment_loader.h                       |   9 +-
 be/src/olap/storage_engine.h                       |   4 +-
 be/src/olap/tablet_column_object_pool.h            |   5 +-
 be/src/olap/tablet_meta.cpp                        |   4 +-
 be/src/olap/tablet_schema_cache.h                  |   5 +-
 be/src/olap/txn_manager.h                          |   6 +-
 be/src/pipeline/exec/set_probe_sink_operator.h     |   2 +
 be/src/pipeline/exec/set_sink_operator.h           |   2 +
 be/src/pipeline/pipeline_fragment_context.cpp      |  12 +-
 be/src/pipeline/pipeline_fragment_context.h        |   3 +-
 be/src/pipeline/query_cache/query_cache.h          |   4 +-
 be/src/runtime/fragment_mgr.cpp                    |  11 +
 be/src/runtime/fragment_mgr.h                      |   4 +-
 be/src/runtime/load_channel_mgr.h                  |   5 +-
 be/src/runtime/memory/lru_cache_policy.h           |   8 +-
 be/src/runtime/query_context.cpp                   |   9 +-
 be/src/runtime_filter/runtime_filter_mgr.cpp       |  24 -
 be/src/runtime_filter/runtime_filter_mgr.h         |   5 +-
 be/src/service/point_query_executor.cpp            |   3 +-
 be/src/service/point_query_executor.h              |   5 +-
 be/src/util/hash_util.hpp                          |  10 +
 be/src/util/obj_lru_cache.cpp                      |   3 +-
 .../parquet/parquet_block_split_bloom_filter.cpp   | 134 ++++
 .../parquet/parquet_block_split_bloom_filter.h     |  82 +++
 be/src/vec/exec/format/parquet/parquet_pred_cmp.h  |  76 ++-
 be/src/vec/exec/format/parquet/vparquet_reader.cpp | 170 ++++-
 be/src/vec/exec/format/parquet/vparquet_reader.h   |  16 +-
 be/src/vec/functions/function_search.cpp           |  29 +-
 be/src/vec/functions/function_search.h             |   2 +-
 be/test/olap/block_column_predicate_test.cpp       | 297 +++++++++
 be/test/olap/lru_cache_test.cpp                    |   4 +-
 .../boolean_query/boolean_query_builder_test.cpp   | 387 +++++++++++
 .../inverted_index/query_v2/boolean_query_test.cpp |  31 +-
 .../query_v2/buffered_union_test.cpp               | 684 ++++++++++++++++++++
 .../query_v2/disjunction_scorer_test.cpp           | 389 ++++++++++++
 .../query_v2/exclude_scorer_test.cpp               | 569 +++++++++++++++++
 .../inverted_index/query_v2/intersection_test.cpp  |  94 +--
 .../query_v2/occur_boolean_query_test.cpp          | 707 +++++++++++++++++++++
 .../inverted_index/query_v2/reqopt_scorer_test.cpp | 540 ++++++++++++++++
 .../query_v2/segment_postings_test.cpp             | 226 +++----
 .../vec/exec/format/parquet/parquet_expr_test.cpp  | 630 +++++++++++++++++-
 contrib/clucene                                    |   2 +-
 .../parquet_bloom_filter/create_table.hql          |  39 ++
 .../multi_catalog/parquet_bloom_filter/data.tar.gz | Bin 0 -> 2735 bytes
 .../parquet_bloom_filter/generate_data.script      |  44 ++
 .../run.sh                                         |   0
 .../java/org/apache/doris/catalog/OlapTable.java   |  39 ++
 .../nereids/rules/rewrite/MergeAggregate.java      |   1 +
 .../org/apache/doris/persist/gson/GsonUtils.java   |   4 +-
 .../java/org/apache/doris/qe/SessionVariable.java  |  17 +
 .../org/apache/doris/catalog/OlapTableTest.java    | 122 ++++
 .../nereids/rules/rewrite/MergeAggregateTest.java  | 124 ++++
 gensrc/proto/segment_v2.proto                      |   1 +
 gensrc/thrift/PaloInternalService.thrift           |   3 +
 gensrc/thrift/parquet.thrift                       | 526 +++++++++++----
 .../hive/test_parquet_bloom_filter.out             | 123 ++++
 .../hive/test_parquet_bloom_filter.groovy          |  60 ++
 tools/fdb/fdb_ctl.sh                               |   3 +-
 100 files changed, 7772 insertions(+), 783 deletions(-)
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/all_query/all_query.h
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/boolean_query_builder.h
 copy be/src/olap/rowset/segment_v2/inverted_index/query_v2/{operator.h => 
boolean_query/occur.h} (87%)
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_query.h
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_weight.cpp
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_weight.h
 rename be/src/olap/rowset/segment_v2/inverted_index/query_v2/{ => 
boolean_query}/operator.h (100%)
 rename 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/{boolean_query.h
 => operator_boolean_query.h} (62%)
 rename 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/{boolean_weight.h
 => operator_boolean_weight.h} (95%)
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer.cpp
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer.h
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/exclude_scorer.cpp
 copy 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/{union/simple_union.h => 
exclude_scorer.h} (53%)
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/reqopt_scorer.h
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/size_hint.h
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/union/buffered_union.cpp
 create mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/union/buffered_union.h
 create mode 100644 
be/src/vec/exec/format/parquet/parquet_block_split_bloom_filter.cpp
 create mode 100644 
be/src/vec/exec/format/parquet/parquet_block_split_bloom_filter.h
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/boolean_query_builder_test.cpp
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/buffered_union_test.cpp
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer_test.cpp
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/exclude_scorer_test.cpp
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/occur_boolean_query_test.cpp
 create mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/reqopt_scorer_test.cpp
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/parquet_bloom_filter/create_table.hql
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/parquet_bloom_filter/data.tar.gz
 create mode 100644 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/parquet_bloom_filter/generate_data.script
 copy 
docker/thirdparties/docker-compose/hive/scripts/data/multi_catalog/{hive_text_complex_type
 => parquet_bloom_filter}/run.sh (100%)
 create mode 100644 
fe/fe-core/src/test/java/org/apache/doris/nereids/rules/rewrite/MergeAggregateTest.java
 create mode 100644 
regression-test/data/external_table_p0/hive/test_parquet_bloom_filter.out
 create mode 100644 
regression-test/suites/external_table_p0/hive/test_parquet_bloom_filter.groovy


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

Reply via email to