Uh oh!
There was an error while loading. Please reload this page.
[feature](inverted index) multi_match function add - #37722
Conversation
doris-robot
commented
Jul 12, 2024
Thank you for your contribution to Apache Doris. Since 2024-03-18, the Document has been moved to doris-website. |
zzzxl1993
commented
Jul 15, 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>
^zzzxl1993
commented
Jul 16, 2024
run buildall |
doris-robot
commented
Jul 16, 2024
TPC-H: Total hot run time: 39750 ms |
doris-robot
commented
Jul 16, 2024
TPC-DS: Total hot run time: 174312 ms |
doris-robot
commented
Jul 16, 2024
ClickBench: Total hot run time: 31.17 s |
zzzxl1993
commented
Jul 16, 2024
run buildall |
doris-robot
commented
Jul 16, 2024
TPC-H: Total hot run time: 40212 ms |
doris-robot
commented
Jul 16, 2024
TPC-DS: Total hot run time: 174442 ms |
doris-robot
commented
Jul 16, 2024
ClickBench: Total hot run time: 30.71 s |
7087e1b to
b45cfd3Comparezzzxl1993
commented
Jul 19, 2024
run buildall |
doris-robot
commented
Jul 19, 2024
TPC-H: Total hot run time: 39945 ms |
doris-robot
commented
Jul 19, 2024
TPC-DS: Total hot run time: 172760 ms |
doris-robot
commented
Jul 19, 2024
ClickBench: Total hot run time: 30.9 s |
zzzxl1993
commented
Jul 19, 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: 86 lines including whitespace and comments (threshold 80)
Status FunctionMultiMatch::eval_inverted_index(FunctionContext* context,
^doris-robot
commented
Jul 19, 2024
TPC-H: Total hot run time: 39971 ms |
doris-robot
commented
Jul 19, 2024
TPC-DS: Total hot run time: 173229 ms |
doris-robot
commented
Jul 19, 2024
ClickBench: Total hot run time: 30.54 s |
zzzxl1993
commented
Jul 22, 2024
run buildall |
doris-robot
commented
Jul 22, 2024
TPC-H: Total hot run time: 40355 ms |
doris-robot
commented
Jul 22, 2024
TPC-DS: Total hot run time: 174180 ms |
doris-robot
commented
Jul 22, 2024
ClickBench: Total hot run time: 31.13 s |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
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.
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.
## Proposed changes 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.
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.
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.
## Proposed changes 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.
Proposed changes