Skip to content

Commit 87ce55b

Browse files
committed
fix case
1 parent 6fa0692 commit 87ce55b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

be/test/vec/function/function_search_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2197,7 +2197,8 @@ TEST_F(FunctionSearchTest, TestEvaluateInvertedIndexWithOccurBoolean) {
21972197
auto status = function_search->evaluate_inverted_index_with_search_param(
21982198
search_param, data_types, iterators, num_rows, bitmap_result);
21992199
// Will return OK because root_query is nullptr (all child queries fail)
2200-
EXPECT_TRUE(status.ok());
2200+
// EXPECT_TRUE(status.ok());
2201+
EXPECT_TRUE(status.is<ErrorCode::INVERTED_INDEX_FILE_NOT_FOUND>());
22012202
}
22022203

22032204
} // namespace doris::vectorized

0 commit comments

Comments
 (0)