mirror of https://github.com/milvus-io/milvus.git
[skip e2e] Reorder header files for query/PlanImpl.h (#13740)
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>pull/13778/head
parent
92bee96b74
commit
9849a800d8
|
@ -11,22 +11,22 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <map>
|
||||||
|
#include <memory>
|
||||||
|
#include <optional>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
#include <boost/dynamic_bitset.hpp>
|
||||||
|
|
||||||
#include "Plan.h"
|
#include "Plan.h"
|
||||||
#include "utils/Json.h"
|
|
||||||
#include "PlanNode.h"
|
#include "PlanNode.h"
|
||||||
#include "exceptions/EasyAssert.h"
|
#include "exceptions/EasyAssert.h"
|
||||||
#include "pb/milvus.pb.h"
|
#include "pb/milvus.pb.h"
|
||||||
#include <memory>
|
#include "utils/Json.h"
|
||||||
#include <map>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
#include <optional>
|
|
||||||
#include <boost/dynamic_bitset.hpp>
|
|
||||||
|
|
||||||
namespace milvus::query {
|
namespace milvus::query {
|
||||||
using Json = nlohmann::json;
|
|
||||||
|
|
||||||
// class definitions
|
using Json = nlohmann::json;
|
||||||
|
|
||||||
struct ExtractedPlanInfo {
|
struct ExtractedPlanInfo {
|
||||||
public:
|
public:
|
||||||
|
@ -96,4 +96,5 @@ using PlanPtr = std::unique_ptr<Plan>;
|
||||||
struct PlaceholderGroup : std::vector<Placeholder> {
|
struct PlaceholderGroup : std::vector<Placeholder> {
|
||||||
using std::vector<Placeholder>::vector;
|
using std::vector<Placeholder>::vector;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace milvus::query
|
} // namespace milvus::query
|
||||||
|
|
Loading…
Reference in New Issue