mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
Update DBImpl.cpp: rename flush_tables to flushed_collections (#2043)
Signed-off-by: loguo <xiangzhouguo@gmail.com>
This commit is contained in:
parent
b55f249938
commit
fc969f73ba
@ -2289,12 +2289,12 @@ DBImpl::ExecWalRecord(const wal::MXLogRecord& record) {
|
||||
return status;
|
||||
}
|
||||
|
||||
std::set<std::string> flushed_tables;
|
||||
std::set<std::string> flushed_collections;
|
||||
status = mem_mgr_->InsertEntities(target_collection_name, record.length, record.ids,
|
||||
(record.data_size / record.length / sizeof(float)),
|
||||
(const float*)record.data, record.attr_nbytes, record.attr_data_size,
|
||||
record.attr_data, record.lsn, flushed_tables);
|
||||
collections_flushed(flushed_tables);
|
||||
record.attr_data, record.lsn, flushed_collections);
|
||||
collections_flushed(flushed_collections);
|
||||
|
||||
milvus::server::CollectInsertMetrics metrics(record.length, status);
|
||||
break;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user