Merge pull request #27750 from taosdata/fix/TD-31946.2

fix: percentile empty result issue
This commit is contained in:
Pan Wei 2024-09-09 15:46:27 +08:00 committed by GitHub
commit 1238960c75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -2155,6 +2155,8 @@ int32_t percentileFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock) {
tMemBucketDestroy(pMemBucket);
return functionFinalize(pCtx, pBlock);
}
} else {
return functionFinalize(pCtx, pBlock);
}
_fin_error: