mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
code style fix
This commit is contained in:
parent
d603cb1eb8
commit
2d565f1099
@ -1475,9 +1475,8 @@ void NO_INLINE Aggregator::mergeDataImpl(
|
||||
Table & table_src,
|
||||
Arena * arena) const
|
||||
{
|
||||
decltype(table_src.end()) end = table_src.end();
|
||||
|
||||
for (auto it = table_src.begin(); it != end; ++it)
|
||||
for (auto it = table_src.begin(), end = table_src.end(); it != end; ++it)
|
||||
{
|
||||
decltype(it) res_it;
|
||||
bool inserted;
|
||||
|
Loading…
Reference in New Issue
Block a user