Fix compilation/linter

This commit is contained in:
Denis Glazachev 2021-01-26 18:39:12 +04:00
parent 11b53d3b9d
commit 0d1c9479f8

View File

@ -484,7 +484,7 @@ void MergeTreeRangeReader::ReadResult::addFilter(const ColumnPtr & new_filter)
throw Exception("addFilter function expected ColumnUInt8.", ErrorCodes::LOGICAL_ERROR);
const auto & data = filter->getData();
auto * it = data.begin();
const auto * it = data.begin();
auto & new_data = new_mutable_holder_cast->getData();
auto * n_it = new_data.begin();