Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support phrase match query #38869

Merged
merged 18 commits into from
Jan 12, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
resolve merge conflict
Signed-off-by: SpadeA-Tang <tangchenjie1210@gmail.com>
  • Loading branch information
SpadeA-Tang committed Jan 10, 2025
commit 554f2fd0db101ba922039d1fe6762be2a9f68326
2 changes: 1 addition & 1 deletion internal/core/unittest/test_text_match.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ TEST(TextMatch, GrowingLoadData) {
ASSERT_NE(segment->get_field_avg_size(FieldId(101)), 0);

// Check whether the text index has been built.
auto expr = GetTextMatchExpr(schema, "football");
auto expr = GetMatchExpr(schema, "football", OpType::TextMatch);
BitsetType final;
final = ExecuteQueryExpr(expr, segment.get(), N, MAX_TIMESTAMP);
ASSERT_EQ(final.size(), N);
Expand Down
Loading
Loading