mirror of https://github.com/milvus-io/milvus.git
parent
e89f9b18c1
commit
0b003144a5
|
@ -482,7 +482,11 @@ ServerError SearchVectorTask::OnExecute() {
|
|||
engine::QueryResults results;
|
||||
uint64_t record_count = (uint64_t)record_array_.size();
|
||||
|
||||
SERVER_LOG_DEBUG << file_id_array_ << std::endl;
|
||||
SERVER_LOG_DEBUG << "file_id_array_: ";
|
||||
for (auto& file_id : file_id_array_) {
|
||||
SERVER_LOG_DEBUG << file_id;
|
||||
}
|
||||
|
||||
if(file_id_array_.empty()) {
|
||||
stat = DBWrapper::DB()->Query(table_name_, (size_t) top_k_, record_count, vec_f.data(), dates, results);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue