mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
issue: #29988 This pr adds full-support for wildcard pattern matching from end to end. Before this pr, the users can only use prefix match in their expression, for example, "like 'prefix%'". With this pr, more flexible syntax can be combined. To do so, this pr makes these changes: - 1. support regex query both on index and raw data; - 2. translate the pattern matching to regex query, so that it can be handled by the regex query logic; - 3. loose the limit of the expression parsing, which allows general pattern matching syntax; With the support of regex query in segcore backend, we can also add mysql-like `REGEXP` syntax later easily. --------- Signed-off-by: longjiquan <jiquan.long@zilliz.com>
63 lines
2.1 KiB
C++
63 lines
2.1 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
// or implied. See the License for the specific language governing permissions and limitations under the License
|
|
|
|
#pragma once
|
|
|
|
#include "pb/plan.pb.h"
|
|
|
|
namespace milvus::test {
|
|
inline auto
|
|
GenColumnInfo(int64_t field_id,
|
|
proto::schema::DataType field_type,
|
|
bool auto_id,
|
|
bool is_pk) {
|
|
auto column_info = new proto::plan::ColumnInfo();
|
|
column_info->set_field_id(field_id);
|
|
column_info->set_data_type(field_type);
|
|
column_info->set_is_autoid(auto_id);
|
|
column_info->set_is_primary_key(is_pk);
|
|
return column_info;
|
|
}
|
|
|
|
template <typename T>
|
|
auto
|
|
GenGenericValue(T value) {
|
|
auto generic = new proto::plan::GenericValue();
|
|
if constexpr (std::is_same_v<T, bool>) {
|
|
generic->set_bool_val(static_cast<bool>(value));
|
|
} else if constexpr (std::is_integral_v<T>) {
|
|
generic->set_int64_val(static_cast<int64_t>(value));
|
|
} else if constexpr (std::is_floating_point_v<T>) {
|
|
generic->set_float_val(static_cast<float>(value));
|
|
} else if constexpr (std::is_same_v<T, std::string>) {
|
|
generic->set_string_val(static_cast<std::string>(value));
|
|
} else {
|
|
static_assert(always_false<T>);
|
|
}
|
|
return generic;
|
|
}
|
|
|
|
template <typename T>
|
|
auto
|
|
GenUnaryRangeExpr(proto::plan::OpType op, T& value) {
|
|
auto unary_range_expr = new proto::plan::UnaryRangeExpr();
|
|
unary_range_expr->set_op(op);
|
|
auto generic = GenGenericValue(value);
|
|
unary_range_expr->set_allocated_value(generic);
|
|
return unary_range_expr;
|
|
}
|
|
|
|
inline auto
|
|
GenExpr() {
|
|
return std::make_unique<proto::plan::Expr>();
|
|
}
|
|
} // namespace milvus::test
|