mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: uniqUpTo: fixed error [#METR-13022].
This commit is contained in:
parent
59ae69c5e9
commit
b470cb26b1
@ -77,7 +77,7 @@ struct __attribute__((__packed__)) AggregateFunctionUniqUpToData
|
||||
|
||||
/// Пишем значения, только если состояние не переполнено. Иначе они не нужны, а важен только факт того, что состояние переполнено.
|
||||
if (count <= threshold)
|
||||
wb.write(reinterpret_cast<const char *>(this), count * sizeof(data[0]));
|
||||
wb.write(reinterpret_cast<const char *>(&data[0]), count * sizeof(data[0]));
|
||||
}
|
||||
|
||||
void readAndMerge(ReadBuffer & rb, UInt8 threshold)
|
||||
|
Loading…
Reference in New Issue
Block a user