Skip to content

Commit 6c147bb

Browse files
authored
[opt](match) add debug point to error log when enable debug point (#49791)
### What problem does this PR solve? Issue Number: close #xxx Related PR: #xxx Problem Summary: ### Release note None ### Check List (For Author) - Test <!-- At least one of them must be included. --> - [ ] Regression test - [ ] Unit Test - [ ] Manual test (add detailed scripts or steps below) - [ ] No need to test or manual test. Explain why: - [ ] This is a refactor/code format and no logic has been changed. - [ ] Previous test can cover this change. - [ ] No code files have been changed. - [ ] Other reason <!-- Add your reason? --> - Behavior changed: - [ ] No. - [ ] Yes. <!-- Explain the behavior change --> - Does this need documentation? - [ ] No. - [ ] Yes. <!-- Add document PR link here. eg: apache/doris-website#1214 --> ### Check List (For Reviewer who merge this PR) - [ ] Confirm the release note - [ ] Confirm test cases - [ ] Confirm document - [ ] Add branch pick label <!-- Add branch pick label that this PR should merge into -->
1 parent 3640f6c commit 6c147bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

be/src/vec/functions/match.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ Status FunctionMatchBase::check(FunctionContext* context, const std::string& fun
235235

236236
DBUG_EXECUTE_IF("match.invert_index_not_support_execute_match", {
237237
return Status::Error<ErrorCode::INVERTED_INDEX_NOT_SUPPORTED>(
238-
"{} not support execute_match", function_name);
238+
"debug point: {} not support execute_match", function_name);
239239
});
240240

241241
return Status::OK();

0 commit comments

Comments
 (0)