Reorder header files for segcore/SegmentGrowing.h (#11829)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
pull/11838/head
Cai Yudong 2021-11-16 10:35:16 +08:00 committed by GitHub
parent e920b6d6ff
commit a58f6b4820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 10 deletions

View File

@ -10,19 +10,19 @@
// 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 <memory>
#include <vector> #include <vector>
#include "common/Types.h"
#include "common/Schema.h"
#include <memory>
#include "query/deprecated/GeneralQuery.h"
#include "query/Plan.h"
#include "common/LoadInfo.h" #include "common/LoadInfo.h"
#include "common/Schema.h"
#include "common/Types.h"
#include "query/Plan.h"
#include "query/deprecated/GeneralQuery.h"
#include "segcore/SegmentInterface.h" #include "segcore/SegmentInterface.h"
namespace milvus { namespace milvus::segcore {
namespace segcore {
using SearchResult = milvus::SearchResult; using SearchResult = milvus::SearchResult;
struct RowBasedRawData { struct RowBasedRawData {
void* raw_data; // schema void* raw_data; // schema
@ -82,5 +82,4 @@ CreateGrowingSegment(SchemaPtr schema) {
return CreateGrowingSegment(schema, seg_conf); return CreateGrowingSegment(schema, seg_conf);
} }
} // namespace segcore } // namespace milvus::segcore
} // namespace milvus