mirror of https://github.com/milvus-io/milvus.git
Merge branch 'branch-0.4.0' into 'branch-0.4.0'
fix typo See merge request megasearch/milvus!431 Former-commit-id: 409dba612b445587bdcbffa7f532b891b34dfbaapull/191/head
commit
1b795cd463
|
@ -420,7 +420,7 @@ Status SqliteMetaImpl::DescribeTableIndex(const std::string &table_id, TableInde
|
||||||
if (groups.size() == 1) {
|
if (groups.size() == 1) {
|
||||||
index.engine_type_ = std::get<0>(groups[0]);
|
index.engine_type_ = std::get<0>(groups[0]);
|
||||||
index.nlist_ = std::get<1>(groups[0]);
|
index.nlist_ = std::get<1>(groups[0]);
|
||||||
index.metric_type_ = std::get<3>(groups[0]);
|
index.metric_type_ = std::get<2>(groups[0]);
|
||||||
} else {
|
} else {
|
||||||
return Status::NotFound("Table " + table_id + " not found");
|
return Status::NotFound("Table " + table_id + " not found");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue