Merge pull request #25066 from kitaisreal/aggregate-function-any-heavy-data-use-fixed-size-type

AggregateFunctionAnyHeavyData use fixed size type
This commit is contained in:
Maksim Kita 2021-06-08 21:59:19 +03:00 committed by GitHub
commit 8e88e682c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -637,7 +637,7 @@ struct AggregateFunctionAnyLastData : Data
template <typename Data>
struct AggregateFunctionAnyHeavyData : Data
{
size_t counter = 0;
UInt64 counter = 0;
using Self = AggregateFunctionAnyHeavyData;