fix compilation error

This commit is contained in:
Ganlin Zhao 2022-06-23 19:34:10 +08:00
parent 83bdcf8dcd
commit df1f4cc53f
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ int32_t sumFunction(SqlFunctionCtx* pCtx) {
// check for overflow
if (IS_FLOAT_TYPE(type) && (isinf(pSumRes->dsum) || isnan(pSumRes->dsum))) {
numOfElems = 0;
numOfElem = 0;
}
_sum_over: