Uh oh!
There was an error while loading. Please reload this page.
[feature](inverted index) Add multi_match function (#37722) - #38877
Conversation
doris-robot
commented
Aug 5, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
zzzxl1993
commented
Aug 5, 2024
run buildall |
| return Status::OK(); | ||
| } | ||
| Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context, |
There was a problem hiding this comment.
warning: function 'eval_inverted_index' exceeds recommended size/complexity thresholds [readability-function-size]
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^Additional context
be/src/vec/functions/function_multi_match.cpp:94: 85 lines including whitespace and comments (threshold 80)
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^| #pragma once | ||
| #include <boost/algorithm/string/split.hpp> |
There was a problem hiding this comment.
warning: 'boost/algorithm/string/split.hpp' file not found [clang-diagnostic-error]
#include<boost/algorithm/string/split.hpp>
^381c525 to
8d4a68fComparezzzxl1993
commented
Aug 5, 2024
run buildall |
doris-robot
commented
Aug 5, 2024
TeamCity be ut coverage result: |
zzzxl1993
commented
Aug 6, 2024
run buildall |
doris-robot
commented
Aug 6, 2024
TeamCity be ut coverage result: |
3049aa9 to
ae15ddcComparezzzxl1993
commented
Aug 7, 2024
run buildall |
| return Status::OK(); | ||
| } | ||
| Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context, |
There was a problem hiding this comment.
warning: function 'eval_inverted_index' exceeds recommended size/complexity thresholds [readability-function-size]
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^Additional context
be/src/vec/functions/function_multi_match.cpp:98: 81 lines including whitespace and comments (threshold 80)
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^doris-robot
commented
Aug 7, 2024
TeamCity be ut coverage result: |
ae15ddc to
2c03796Comparezzzxl1993
commented
Aug 7, 2024
run buildall |
doris-robot
commented
Aug 7, 2024
TeamCity be ut coverage result: |
1. select * from tbl where multi_match(c1, 'c2, c3, c4', 'phrase_prefix', 'xxx'); 2. multi_match performs a match_phrase_prefix query on the columns specified in the first and second parameters. The value to be searched is specified in the fourth parameter.
… and v2 (apache#39149) ## Proposed changes 1. reversed Index v1 and v2 have different column names
87e7494 to
ff3378dComparezzzxl1993
commented
Aug 9, 2024
run buildall |
| return Status::OK(); | ||
| } | ||
| Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context, |
There was a problem hiding this comment.
warning: function 'eval_inverted_index' exceeds recommended size/complexity thresholds [readability-function-size]
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^Additional context
be/src/vec/functions/function_multi_match.cpp:98: 87 lines including whitespace and comments (threshold 80)
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^doris-robot
commented
Aug 9, 2024
TeamCity be ut coverage result: |
#37722
#38931
#39149