Merge pull request #27302 from taosdata/fix/TD-31532
fix: merge join destroy table issue
This commit is contained in:
commit
768855c26a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue