dbms: uniqUpTo: fixed error [#METR-13022].

This commit is contained in:
Alexey Milovidov 2014-10-02 23:20:09 +04:00
parent 59ae69c5e9
commit b470cb26b1

View File

@ -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)