fix:fix skip autoindex like expr (#41330)

pr: #41325

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
pull/41383/head
zhagnlu 2025-04-16 10:20:34 +08:00 committed by GitHub
parent f4c541e94a
commit ebe1b1c9a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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();