enable hll splitting

This commit is contained in:
Ganlin Zhao 2022-06-09 13:36:49 +08:00
parent 8e65f1e426
commit bed14b6ee3
1 changed files with 3 additions and 1 deletions

View File

@ -1503,7 +1503,9 @@ const SBuiltinFuncDefinition funcMgtBuiltins[] = {
.getEnvFunc = getHLLFuncEnv, .getEnvFunc = getHLLFuncEnv,
.initFunc = functionSetup, .initFunc = functionSetup,
.processFunc = hllFunction, .processFunc = hllFunction,
.finalizeFunc = hllFinalize .finalizeFunc = hllFinalize,
.pPartialFunc = "_hyperloglog_partial",
.pMergeFunc = "_hyperloglog_merge"
}, },
{ {
.name = "_hyperloglog_partial", .name = "_hyperloglog_partial",