mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
9 lines
188 B
C++
9 lines
188 B
C++
#include "Partition.h"
|
|
|
|
namespace milvus::dog_segment {
|
|
|
|
Partition::Partition(std::string& partition_name, SchemaPtr& schema):
|
|
partition_name_(partition_name), schema_(schema) {}
|
|
|
|
}
|