This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 06ba38342dd [chore](log) Avoid too many 'token parser result is empty'
(#33921) (#36054)
06ba38342dd is described below
commit 06ba38342dd530c30640fce75f673d6b51138861
Author: Gavin Chou <[email protected]>
AuthorDate: Fri Jun 7 22:10:49 2024 +0800
[chore](log) Avoid too many 'token parser result is empty' (#33921) (#36054)
pick master #33921
---
be/src/vec/functions/match.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/vec/functions/match.cpp b/be/src/vec/functions/match.cpp
index fa4301306ee..25fe79f4194 100644
--- a/be/src/vec/functions/match.cpp
+++ b/be/src/vec/functions/match.cpp
@@ -278,7 +278,7 @@ Status FunctionMatchPhrase::execute_match(const
std::string& column_name,
query_tokens, reader.get(), inverted_index_ctx->analyzer,
column_name,
doris::segment_v2::InvertedIndexQueryType::MATCH_PHRASE_QUERY);
if (query_tokens.empty()) {
- LOG(WARNING) << fmt::format(
+ VLOG_DEBUG << fmt::format(
"token parser result is empty for query, "
"please check your query: '{}' and index parser: '{}'",
match_query_str,
inverted_index_parser_type_to_string(parser_type));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]