mirror of https://github.com/milvus-io/milvus.git
Signed-off-by: yhmo <yihua.mo@zilliz.com>pull/16002/head
parent
ed01b3874b
commit
9193addd8c
|
@ -222,6 +222,10 @@ MemTable::ApplyDeletes() {
|
|||
|
||||
for (auto& file : files) {
|
||||
LOG_ENGINE_DEBUG_ << "Applying deletes in segment: " << file.segment_id_;
|
||||
if (file.row_count_ == 0) {
|
||||
LOG_ENGINE_DEBUG_ << "Applying deletes in segment: segment is empty, skip";
|
||||
continue;
|
||||
}
|
||||
|
||||
segment::IdBloomFilterPtr id_bloom_filter_ptr = nullptr;
|
||||
segment::UidsPtr uids_ptr = nullptr;
|
||||
|
|
Loading…
Reference in New Issue