Update StorageMergeTree.cpp

This commit is contained in:
alexey-milovidov 2020-03-22 03:53:40 +03:00 committed by GitHub
parent 7a92428046
commit 46829a63f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -511,7 +511,7 @@ void StorageMergeTree::loadMutations()
{
MergeTreeMutationEntry entry(disk, path, it->name());
Int64 block_number = entry.block_number;
LOG_DEBUG(log, "Loading mutation:" << it->name() << " entry commands size " << entry.commands.size());
LOG_DEBUG(log, "Loading mutation: " << it->name() << " entry, commands size: " << entry.commands.size());
auto insertion = current_mutations_by_id.emplace(it->name(), std::move(entry));
current_mutations_by_version.emplace(block_number, insertion.first->second);
}