Typo fix in hyperloglog.c (#807)

Change from hypreloglog to hyperloglog

Signed-off-by: mwish <maplewish117@gmail.com>
This commit is contained in:
mwish 2024-07-21 05:48:00 +08:00 committed by GitHub
parent 15a8290231
commit 6eb19cf38e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -673,7 +673,7 @@ int hllSparseSet(robj *o, long index, uint8_t count) {
* for future reallocates on incremental growth. But we do not allocate more than * for future reallocates on incremental growth. But we do not allocate more than
* 'server.hll_sparse_max_bytes' bytes for the sparse representation. * 'server.hll_sparse_max_bytes' bytes for the sparse representation.
* If the available size of hyperloglog sds string is not enough for the increment * If the available size of hyperloglog sds string is not enough for the increment
* we need, we promote the hypreloglog to dense representation in 'step 3'. * we need, we promote the hyperloglog to dense representation in 'step 3'.
*/ */
if (sdsalloc(o->ptr) < server.hll_sparse_max_bytes && sdsavail(o->ptr) < 3) { if (sdsalloc(o->ptr) < server.hll_sparse_max_bytes && sdsavail(o->ptr) < 3) {
size_t newlen = sdslen(o->ptr) + 3; size_t newlen = sdslen(o->ptr) + 3;