This is an automated email from the ASF dual-hosted git repository. airborne pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from fe4efdda463 [fix](cloud) Fix possible incorrect merged tablet stats while iterating detached tablet stats (#40494) add 5e9d9430e18 [Feature-WIP](inverted index) Add boolean query functionality (#40230) No new revisions were added by this update. Summary of changes: .../inverted_index/query_v2/boolean_query.cpp | 91 ++++++++++ .../inverted_index/query_v2/boolean_query.h | 56 +++++++ .../inverted_index/query_v2/conjunction_op.cpp | 94 +++++++++++ .../inverted_index/query_v2/conjunction_op.h | 46 ++++++ .../inverted_index/query_v2/disjunction_op.cpp | 86 ++++++++++ .../inverted_index/query_v2/disjunction_op.h | 59 +++++++ .../segment_v2/inverted_index/query_v2/factory.cpp | 36 ++++ .../segment_v2/inverted_index/query_v2/factory.h | 41 +++++ .../inverted_index/query_v2/factory.inline.h | 47 ++++++ .../segment_v2/inverted_index/query_v2/node.h | 128 ++++++++++++++ .../segment_v2/inverted_index/query_v2/operator.h | 45 +++++ .../inverted_index/query_v2/phrase_query.h | 38 +++++ .../segment_v2/inverted_index/query_v2/query.h | 52 ++++++ .../inverted_index/query_v2/roaring_query.cpp | 25 +++ .../inverted_index/query_v2/roaring_query.h | 63 +++++++ .../inverted_index/query_v2/term_query.cpp | 39 +++++ .../inverted_index/query_v2/term_query.h | 44 +++++ .../inverted_index/query_v2/query_test.cpp | 183 +++++++++++++++++++++ 18 files changed, 1173 insertions(+) create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/boolean_query.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/conjunction_op.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/conjunction_op.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_op.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/disjunction_op.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/factory.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/factory.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/factory.inline.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/node.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/operator.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/phrase_query.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/query.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/roaring_query.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/roaring_query.h create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/term_query.cpp create mode 100644 be/src/olap/rowset/segment_v2/inverted_index/query_v2/term_query.h create mode 100644 be/test/olap/rowset/segment_v2/inverted_index/query_v2/query_test.cpp --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org