fix: free the supplementy blocks array of merge tree

This commit is contained in:
slzhou 2024-03-22 15:58:39 +08:00
parent 4231b87158
commit 3426bb2870
1 changed files with 1 additions and 0 deletions

View File

@ -1509,6 +1509,7 @@ static int32_t sortBlocksToExtSource(SSortHandle* pHandle, SArray* aBlk, SArray*
if (TSDB_CODE_SUCCESS != code) { if (TSDB_CODE_SUCCESS != code) {
taosMemoryFree(sup.aRowIdx); taosMemoryFree(sup.aRowIdx);
taosMemoryFree(sup.aTs); taosMemoryFree(sup.aTs);
taosMemoryFree(sup.aBlks);
return code; return code;
} }