fix: memory leaks
This commit is contained in:
parent
205e3ecf27
commit
92a695cd2f
|
@ -3525,7 +3525,9 @@ int32_t stopRowIdSort(STableMergeScanInfo *pInfo) {
|
|||
taosCloseFile(&pSort->dataFile);
|
||||
taosRemoveFile(pSort->dataPath);
|
||||
|
||||
taosLRUCacheEraseUnrefEntries(pSort->pBlkInfoCache);
|
||||
taosLRUCacheCleanup(pSort->pBlkInfoCache);
|
||||
taosLRUCacheEraseUnrefEntries(pSort->pBlkDataCache);
|
||||
taosLRUCacheCleanup(pSort->pBlkDataCache);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue