[skip e2e] Reorder header files for query/PlanImpl.h (#13740)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
pull/13778/head
Cai Yudong 2021-12-20 16:37:55 +08:00 committed by GitHub
parent 92bee96b74
commit 9849a800d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 9 deletions

View File

@ -11,22 +11,22 @@
#pragma once
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include <boost/dynamic_bitset.hpp>
#include "Plan.h"
#include "utils/Json.h"
#include "PlanNode.h"
#include "exceptions/EasyAssert.h"
#include "pb/milvus.pb.h"
#include <memory>
#include <map>
#include <string>
#include <vector>
#include <optional>
#include <boost/dynamic_bitset.hpp>
#include "utils/Json.h"
namespace milvus::query {
using Json = nlohmann::json;
// class definitions
using Json = nlohmann::json;
struct ExtractedPlanInfo {
public:
@ -96,4 +96,5 @@ using PlanPtr = std::unique_ptr<Plan>;
struct PlaceholderGroup : std::vector<Placeholder> {
using std::vector<Placeholder>::vector;
};
} // namespace milvus::query