Update AggregateFunctionGroupBitmapData.h

This commit is contained in:
alexey-milovidov 2019-11-05 01:59:02 +03:00 committed by GitHub
parent da2d05802c
commit c081c8aacb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,11 +584,11 @@ public:
/**
* Replace value
*/
void rb_replace(const UInt32* from_vals, const UInt32* to_vals, size_t num)
void rb_replace(const UInt32 * from_vals, const UInt32 * to_vals, size_t num)
{
if (isSmall())
toLarge();
for (size_t i = 0; i < num; i++)
for (size_t i = 0; i < num; ++i)
{
if (from_vals[i] == to_vals[i])
continue;