[skip e2e] Remove redundant header files for query/visitors/ExecPlanNodeVisitor.cpp (#14266)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-12-27 11:18:23 +08:00 committed by GitHub
parent 3cfa88d6f2
commit 390bff5e1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 13 deletions

View File

@ -10,13 +10,15 @@
// or implied. See the License for the specific language governing permissions and limitations under the License
#pragma once
#include <optional>
#include "segcore/SegmentGrowingImpl.h"
#include <deque>
#include <optional>
#include <boost/dynamic_bitset.hpp>
#include "query/SubSearchResult.h"
#include "segcore/SegmentGrowingImpl.h"
namespace milvus::query {
using BitsetChunk = boost::dynamic_bitset<>;
using BitsetSimple = std::deque<BitsetChunk>;
@ -28,4 +30,5 @@ SearchOnGrowing(const segcore::SegmentGrowingImpl& segment,
int64_t num_queries,
const faiss::BitsetView& bitset,
SearchResult& results);
} // namespace milvus::query

View File

@ -9,20 +9,18 @@
// 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
#include "utils/Json.h"
#include "query/PlanImpl.h"
#include "segcore/SegmentGrowing.h"
#include <utility>
#include "query/generated/ExecPlanNodeVisitor.h"
#include "segcore/SegmentGrowingImpl.h"
#include "query/generated/ExecExprVisitor.h"
#include "query/SearchOnGrowing.h"
#include "query/SearchOnSealed.h"
#include "boost_ext/dynamic_bitset_ext.hpp"
#include "query/PlanImpl.h"
#include "query/generated/ExecPlanNodeVisitor.h"
#include "query/generated/ExecExprVisitor.h"
#include "query/SubSearchResult.h"
#include "segcore/SegmentGrowing.h"
#include "utils/Json.h"
namespace milvus::query {
#if 1
namespace impl {
// THIS CONTAINS EXTRA BODY FOR VISITOR
// WILL BE USED BY GENERATOR UNDER suvlim/core_gen/
@ -60,7 +58,6 @@ class ExecPlanNodeVisitor : PlanNodeVisitor {
std::optional<RetType> ret_;
};
} // namespace impl
#endif
static SearchResult
empty_search_result(int64_t num_queries, int64_t topk, int64_t round_decimal, MetricType metric_type) {