mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
Merge pull request #3512 from lapkofear/amd_perf_problem
fixed group by int16 and Date types on AMD EPYC 7401P machine
This commit is contained in:
commit
c25e093b82
@ -1475,7 +1475,7 @@ void NO_INLINE Aggregator::mergeDataImpl(
|
||||
Table & table_src,
|
||||
Arena * arena) const
|
||||
{
|
||||
for (auto it = table_src.begin(); it != table_src.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