mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
fix: support infix and suffix match types in JsonStats (#41720)
fix: support infix and suffix match types in JsonStats issue:https://github.com/milvus-io/milvus/issues/41386 Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
This commit is contained in:
parent
e3c81ba1cc
commit
26cbc74478
@ -1247,8 +1247,6 @@ PhyUnaryRangeFilterExpr::ExecRangeVisitorImplJsonForIndex() {
|
||||
CompareValueWithOpType(type, value, val, op_type);
|
||||
case proto::plan::NotEqual:
|
||||
CompareValueWithOpType(type, value, val, op_type);
|
||||
case proto::plan::PrefixMatch:
|
||||
case proto::plan::Match:
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
@ -1378,6 +1376,8 @@ PhyUnaryRangeFilterExpr::ExecRangeVisitorImplJsonForIndex() {
|
||||
}
|
||||
}
|
||||
}
|
||||
case proto::plan::InnerMatch:
|
||||
case proto::plan::PostfixMatch:
|
||||
case proto::plan::PrefixMatch:
|
||||
if constexpr (std::is_same_v<GetType,
|
||||
proto::plan::Array>) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user