mirror of https://github.com/milvus-io/milvus.git
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
parent
f4c541e94a
commit
ebe1b1c9a9
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue