mirror of https://github.com/milvus-io/milvus.git
Reorder header files for segcore/FieldIndexing.h (#11067)
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>pull/11078/head
parent
5397449f2a
commit
93339c7f49
|
@ -10,15 +10,18 @@
|
||||||
// or implied. See the License for the specific language governing permissions and limitations under the License
|
// or implied. See the License for the specific language governing permissions and limitations under the License
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "AckResponder.h"
|
|
||||||
#include <tbb/concurrent_vector.h>
|
|
||||||
#include "common/Schema.h"
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
#include <tbb/concurrent_vector.h>
|
||||||
|
|
||||||
|
#include "AckResponder.h"
|
||||||
#include "InsertRecord.h"
|
#include "InsertRecord.h"
|
||||||
#include <knowhere/index/vector_index/IndexIVF.h>
|
#include "common/Schema.h"
|
||||||
#include <knowhere/index/structured_index_simple/StructuredIndexSort.h>
|
#include "knowhere/index/structured_index_simple/StructuredIndexSort.h"
|
||||||
|
#include "knowhere/index/vector_index/IndexIVF.h"
|
||||||
#include "segcore/SegcoreConfig.h"
|
#include "segcore/SegcoreConfig.h"
|
||||||
|
|
||||||
namespace milvus::segcore {
|
namespace milvus::segcore {
|
||||||
|
@ -56,6 +59,7 @@ class FieldIndexing {
|
||||||
const FieldMeta& field_meta_;
|
const FieldMeta& field_meta_;
|
||||||
const SegcoreConfig& segcore_config_;
|
const SegcoreConfig& segcore_config_;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
class ScalarFieldIndexing : public FieldIndexing {
|
class ScalarFieldIndexing : public FieldIndexing {
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue