fix:fix skip autoindex like expr (#41330)

pr: #41325

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
hotfix-2.5.9
zhagnlu 2025-04-16 10:20:34 +08:00 committed by Li Liu
parent 76fe0dfc74
commit a201c04e5b
1 changed files with 5 additions and 0 deletions

View File

@ -114,6 +114,11 @@ class HybridScalarIndex : public ScalarIndex<T> {
return internal_index_->PatternMatch(pattern, op);
}
bool
TryUseRegexQuery() const override {
return internal_index_->TryUseRegexQuery();
}
bool
SupportRegexQuery() const override {
return internal_index_->SupportRegexQuery();