Update AggregateFunctionGroupUniqArray.h

This commit is contained in:
alexey-milovidov 2019-04-24 01:40:16 +03:00 committed by GitHub
parent b8bc308685
commit 3db650861d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,7 +78,7 @@ public:
for (auto & rhs_elem : rhs_set)
{
if (cur_set.size() >= max_elems)
return ;
return;
cur_set.insert(rhs_elem.getValue());
}
}