This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 00ff5f05d3f0d503104a84c73d2bf6751184f077 Author: Gavin Chou <[email protected]> AuthorDate: Sun Apr 21 11:04:57 2024 +0800 [chore](log) Avoid too many 'token parser result is empty' (#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 3f2564227ba..eab790678ea 100644 --- a/be/src/vec/functions/match.cpp +++ b/be/src/vec/functions/match.cpp @@ -279,7 +279,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]
