Skip to content

Commit

Permalink
[chore](log) Avoid too many 'token parser result is empty' (apache#33921
Browse files Browse the repository at this point in the history
) (apache#36054)

pick master apache#33921
  • Loading branch information
gavinchou authored and weixingyu12 committed Jun 11, 2024
1 parent 101c683 commit e982f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/functions/match.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit e982f73

Please sign in to comment.