mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Merge pull request #24210 from kitaisreal/small-style-code-simplification
Small code simplification
This commit is contained in:
commit
4a84c2f3ea
@ -309,8 +309,7 @@ BlockIO InterpreterInsertQuery::execute()
|
||||
|
||||
auto out_wrapper = std::make_shared<CountingBlockOutputStream>(out);
|
||||
out_wrapper->setProcessListElement(getContext()->getProcessListElement());
|
||||
out = std::move(out_wrapper);
|
||||
out_streams.emplace_back(std::move(out));
|
||||
out_streams.emplace_back(std::move(out_wrapper));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user