Commit 664a1ab4 authored by JinHai-CN's avatar JinHai-CN
Browse files

Fix format



Signed-off-by: default avatarJinHai-CN <hai.jin@zilliz.com>
parent aa0b416e
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -365,13 +365,12 @@ MemTable::ApplyDeletes() {
        auto time7 = std::chrono::high_resolution_clock::now();
        std::chrono::duration<double> diff6 = time7 - time6;
        diff6 = time6 - time5;
        ENGINE_LOG_DEBUG << "Update table file row count in vector of segment: " << table_file.segment_id_ << " in " << diff6.count()
                         << " s";
        ENGINE_LOG_DEBUG << "Update table file row count in vector of segment: " << table_file.segment_id_ << " in "
                         << diff6.count() << " s";
    }

    auto time7 = std::chrono::high_resolution_clock::now();


    status = meta_->UpdateTableFilesRowCount(table_files_to_update);

    if (!status.ok()) {