mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
fix: disable use_index when some array expr (#34894)
#34797 Signed-off-by: luzhang <luzhang@zilliz.com> Co-authored-by: luzhang <luzhang@zilliz.com>
This commit is contained in:
parent
5584ae2e14
commit
f77f5364b2
@ -78,10 +78,12 @@ PhyBinaryArithOpEvalRangeExpr::Eval(EvalCtx& context, VectorPtr& result) {
|
||||
auto value_type = expr_->value_.val_case();
|
||||
switch (value_type) {
|
||||
case proto::plan::GenericValue::ValCase::kInt64Val: {
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplForArray<int64_t>();
|
||||
break;
|
||||
}
|
||||
case proto::plan::GenericValue::ValCase::kFloatVal: {
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplForArray<double>();
|
||||
break;
|
||||
}
|
||||
|
@ -91,14 +91,17 @@ PhyBinaryRangeFilterExpr::Eval(EvalCtx& context, VectorPtr& result) {
|
||||
auto value_type = expr_->lower_val_.val_case();
|
||||
switch (value_type) {
|
||||
case proto::plan::GenericValue::ValCase::kInt64Val: {
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplForArray<int64_t>();
|
||||
break;
|
||||
}
|
||||
case proto::plan::GenericValue::ValCase::kFloatVal: {
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplForArray<double>();
|
||||
break;
|
||||
}
|
||||
case proto::plan::GenericValue::ValCase::kStringVal: {
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplForArray<std::string>();
|
||||
break;
|
||||
}
|
||||
|
@ -364,6 +364,11 @@ class SegmentExpr : public Expr {
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
SetNotUseIndex() {
|
||||
use_index_ = false;
|
||||
}
|
||||
|
||||
protected:
|
||||
const segcore::SegmentInternalInterface* segment_;
|
||||
const FieldId field_id_;
|
||||
|
@ -91,21 +91,26 @@ PhyTermFilterExpr::Eval(EvalCtx& context, VectorPtr& result) {
|
||||
}
|
||||
case DataType::ARRAY: {
|
||||
if (expr_->vals_.size() == 0) {
|
||||
SetNotUseIndex();
|
||||
result = ExecVisitorImplTemplateArray<bool>();
|
||||
break;
|
||||
}
|
||||
auto type = expr_->vals_[0].val_case();
|
||||
switch (type) {
|
||||
case proto::plan::GenericValue::ValCase::kBoolVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecVisitorImplTemplateArray<bool>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kInt64Val:
|
||||
SetNotUseIndex();
|
||||
result = ExecVisitorImplTemplateArray<int64_t>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kFloatVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecVisitorImplTemplateArray<double>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kStringVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecVisitorImplTemplateArray<std::string>();
|
||||
break;
|
||||
default:
|
||||
|
@ -213,15 +213,19 @@ PhyUnaryRangeFilterExpr::Eval(EvalCtx& context, VectorPtr& result) {
|
||||
auto val_type = expr_->val_.val_case();
|
||||
switch (val_type) {
|
||||
case proto::plan::GenericValue::ValCase::kBoolVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplArray<bool>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kInt64Val:
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplArray<int64_t>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kFloatVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplArray<double>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kStringVal:
|
||||
SetNotUseIndex();
|
||||
result = ExecRangeVisitorImplArray<std::string>();
|
||||
break;
|
||||
case proto::plan::GenericValue::ValCase::kArrayVal:
|
||||
|
Loading…
Reference in New Issue
Block a user