Misused if

This commit is contained in:
alesapin 2020-02-25 16:48:23 +03:00
parent 96a789336f
commit f54ade41f2

View File

@ -1404,7 +1404,7 @@ NameSet MergeTreeDataMergerMutator::collectFilesToRemove(
remove_files.emplace("skp_idx_" + command.column_name + mrk_extension); remove_files.emplace("skp_idx_" + command.column_name + mrk_extension);
} }
/// We don't remove column files for compact parts because they stored in single file /// We don't remove column files for compact parts because they stored in single file
else if (command.type == MutationCommand::Type::DROP_COLUMN && isCompactPart(source_part)) else if (command.type == MutationCommand::Type::DROP_COLUMN && !isCompactPart(source_part))
{ {
IDataType::StreamCallback callback = [&](const IDataType::SubstreamPath & substream_path) IDataType::StreamCallback callback = [&](const IDataType::SubstreamPath & substream_path)
{ {