Skip to content
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions internal/core/src/index/HybridScalarIndex.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@
return internal_index_->PatternMatch(pattern, op);
}

bool
TryUseRegexQuery() const override {
return internal_index_->TryUseRegexQuery();

Check warning on line 119 in internal/core/src/index/HybridScalarIndex.h

View check run for this annotation

Codecov / codecov/patch

internal/core/src/index/HybridScalarIndex.h#L118-L119

Added lines #L118 - L119 were not covered by tests
}

bool
SupportRegexQuery() const override {
return internal_index_->SupportRegexQuery();
Expand Down
Loading