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

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


 discard 7b764b85774 [feature](inverted index) Cherry-pick PR #58545 for 
ES-like boolean query to branch-4.0
 discard 39a688d0496 [fix](build) Add missing PR #58545 dependencies for lucene 
bool mode feature

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/auto-pick-59394-branch-4.0 (3e3d159bd4c)
            \
             O -- O -- O   (7b764b85774)

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:
 .../inverted_index/query_v2/all_query/all_query.h  | 112 ----
 .../query_v2/boolean_query/boolean_query.h         |   2 +-
 .../query_v2/boolean_query/boolean_query_builder.h |  84 ---
 .../query_v2/boolean_query/boolean_weight.h        |   2 +-
 .../inverted_index/query_v2/boolean_query/occur.h  |  24 -
 .../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 ---
 .../boolean_query/operator_boolean_query.h         |  60 --
 .../boolean_query/operator_boolean_weight.h        | 283 ---------
 .../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 ---
 .../inverted_index/query_v2/exclude_scorer.h       |  50 --
 .../inverted_index/query_v2/intersection.cpp       | 206 ++----
 .../inverted_index/query_v2/intersection.h         |  20 +-
 .../query_v2/{boolean_query => }/operator.h        |   0
 .../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 +-
 be/src/vec/functions/function_search.cpp           |   2 +-
 be/src/vec/functions/function_search.h             |   3 +-
 .../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 ++++---
 contrib/clucene                                    |   2 +-
 47 files changed, 408 insertions(+), 5577 deletions(-)
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/all_query/all_query.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/boolean_query_builder.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_query.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_weight.cpp
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/occur_boolean_weight.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/operator_boolean_query.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/operator_boolean_weight.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer.cpp
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/exclude_scorer.cpp
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/exclude_scorer.h
 rename be/src/olap/rowset/segment_v2/inverted_index/query_v2/{boolean_query => 
}/operator.h (100%)
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/reqopt_scorer.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/size_hint.h
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/union/buffered_union.cpp
 delete mode 100644 
be/src/olap/rowset/segment_v2/inverted_index/query_v2/union/buffered_union.h
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query/boolean_query_builder_test.cpp
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/buffered_union_test.cpp
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_scorer_test.cpp
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/exclude_scorer_test.cpp
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/occur_boolean_query_test.cpp
 delete mode 100644 
be/test/olap/rowset/segment_v2/inverted_index/query_v2/reqopt_scorer_test.cpp


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

Reply via email to