fix: merge join destroy table issue

This commit is contained in:
dapan1121 2024-08-19 17:13:27 +08:00
parent 55f7b7d771
commit 5035b3a624
1 changed files with 3 additions and 0 deletions

View File

@ -1746,6 +1746,9 @@ void destroyGrpArray(void* ppArray) {
}
void destroyMergeJoinTableCtx(SMJoinTableCtx* pTable) {
if (NULL == pTable) {
return;
}
mJoinDestroyCreatedBlks(pTable->createdBlks);
taosArrayDestroy(pTable->createdBlks);
tSimpleHashCleanup(pTable->pGrpHash);