This commit is contained in:
Ganlin Zhao 2022-06-09 14:21:27 +08:00
parent bed14b6ee3
commit 20b1ee6160
1 changed files with 1 additions and 1 deletions

View File

@ -3569,7 +3569,7 @@ int32_t hllFunctionMerge(SqlFunctionCtx *pCtx) {
for (int32_t k = 0; k < HLL_BUCKETS; ++k) {
if (pInfo->buckets[k] < pInputInfo->buckets[k]) {
pInputInfo->buckets[k] = pInfo->buckets[k];
pInfo->buckets[k] = pInputInfo->buckets[k];
}
}