mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-02 00:45:30 +08:00
allow empty partition name
This commit is contained in:
parent
33b31b3d49
commit
d93182a209
@ -305,6 +305,10 @@ DBImpl::InsertVectors(const std::string& table_id, const std::string& partition_
|
||||
if (!partition_tag.empty()) {
|
||||
std::string partition_name;
|
||||
status = meta_ptr_->GetPartitionName(table_id, partition_tag, target_table_name);
|
||||
if (!status.ok()) {
|
||||
ENGINE_LOG_ERROR << status.message();
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
||||
// insert vectors into target table
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user