Reorder header files for segcore/SegmentSealedImpl.h (#12439)

Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
This commit is contained in:
Cai Yudong 2021-11-30 18:45:35 +08:00 committed by GitHub
parent f899644e88
commit 7f9a41496d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,24 +10,26 @@
// or implied. See the License for the specific language governing permissions and limitations under the License
#pragma once
#include <deque>
#include <map>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include <tbb/concurrent_priority_queue.h>
#include <tbb/concurrent_unordered_map.h>
#include <tbb/concurrent_vector.h>
#include <segcore/TimestampIndex.h>
#include "segcore/SegmentSealed.h"
#include "ConcurrentVector.h"
#include "SealedIndexingRecord.h"
#include "segcore/DeletedRecord.h"
#include "DeletedRecord.h"
#include "ScalarIndex.h"
#include <deque>
#include <map>
#include <vector>
#include <memory>
#include <utility>
#include <string>
#include "SealedIndexingRecord.h"
#include "SegmentSealed.h"
#include "TimestampIndex.h"
namespace milvus::segcore {
class SegmentSealedImpl : public SegmentSealed {
public:
explicit SegmentSealedImpl(SchemaPtr schema);