// 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 #include #include "common/Consts.h" #include "expr/ITypeExpr.h" #include "pb/plan.pb.h" #include "plan/PlanNode.h" namespace milvus::test { inline auto GenColumnInfo( int64_t field_id, proto::schema::DataType field_type, bool auto_id, bool is_pk, proto::schema::DataType element_type = proto::schema::DataType::None) { 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); column_info->set_element_type(element_type); return column_info; } template auto GenGenericValue(T value) { auto generic = new proto::plan::GenericValue(); if constexpr (std::is_same_v) { generic->set_bool_val(static_cast(value)); } else if constexpr (std::is_integral_v) { generic->set_int64_val(static_cast(value)); } else if constexpr (std::is_floating_point_v) { generic->set_float_val(static_cast(value)); } else if constexpr (std::is_same_v) { generic->set_string_val(static_cast(value)); } else { static_assert(always_false); } return generic; } template 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(); } inline std::shared_ptr CreateRetrievePlanByExpr(std::shared_ptr expr) { auto init_plannode_id = std::stoi(DEFAULT_PLANNODE_ID); milvus::plan::PlanNodePtr plannode; std::vector sources; plannode = std::make_shared(DEFAULT_PLANNODE_ID, expr); sources = std::vector{plannode}; plannode = std::make_shared( std::to_string(init_plannode_id++), sources); return plannode; } inline std::shared_ptr CreateSearchPlanByExpr(std::shared_ptr expr) { auto init_plannode_id = std::stoi(DEFAULT_PLANNODE_ID); milvus::plan::PlanNodePtr plannode; std::vector sources; plannode = std::make_shared(DEFAULT_PLANNODE_ID, expr); sources = std::vector{plannode}; plannode = std::make_shared( std::to_string(init_plannode_id++), sources); sources = std::vector{plannode}; plannode = std::make_shared( std::to_string(init_plannode_id++), sources); return plannode; } } // namespace milvus::test