mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
Less comments
This commit is contained in:
parent
fa5aa5fe6a
commit
be5fb9a517
@ -464,13 +464,6 @@ void MergeTreeDataPart::remove() const
|
|||||||
|
|
||||||
LOG_ERROR(storage.log, "Cannot quickly remove directory " << to << " by removing files; fallback to recursive removal. Reason: "
|
LOG_ERROR(storage.log, "Cannot quickly remove directory " << to << " by removing files; fallback to recursive removal. Reason: "
|
||||||
<< getCurrentExceptionMessage(false));
|
<< getCurrentExceptionMessage(false));
|
||||||
std::vector<std::string> files;
|
|
||||||
to_dir.list(files);
|
|
||||||
for (const auto & f : files)
|
|
||||||
{
|
|
||||||
std::cerr << "NOT REMOVED FILE:" << f << std::endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
to_dir.remove(true);
|
to_dir.remove(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -594,7 +594,6 @@ MergeTreeRangeReader::ReadResult MergeTreeRangeReader::read(size_t max_rows, Mar
|
|||||||
merge_tree_reader->fillMissingColumns(columns, should_evaluate_missing_defaults, num_rows);
|
merge_tree_reader->fillMissingColumns(columns, should_evaluate_missing_defaults, num_rows);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::cerr << "SHOULD eVALUATE:" << should_evaluate_missing_defaults << std::endl;
|
|
||||||
if (!columns.empty() && should_evaluate_missing_defaults)
|
if (!columns.empty() && should_evaluate_missing_defaults)
|
||||||
{
|
{
|
||||||
auto block = prev_reader->sample_block.cloneWithColumns(read_result.columns);
|
auto block = prev_reader->sample_block.cloneWithColumns(read_result.columns);
|
||||||
|
Loading…
Reference in New Issue
Block a user