fix: merge join destroy table issue
This commit is contained in:
parent
55f7b7d771
commit
5035b3a624
|
@ -1746,6 +1746,9 @@ void destroyGrpArray(void* ppArray) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void destroyMergeJoinTableCtx(SMJoinTableCtx* pTable) {
|
void destroyMergeJoinTableCtx(SMJoinTableCtx* pTable) {
|
||||||
|
if (NULL == pTable) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
mJoinDestroyCreatedBlks(pTable->createdBlks);
|
mJoinDestroyCreatedBlks(pTable->createdBlks);
|
||||||
taosArrayDestroy(pTable->createdBlks);
|
taosArrayDestroy(pTable->createdBlks);
|
||||||
tSimpleHashCleanup(pTable->pGrpHash);
|
tSimpleHashCleanup(pTable->pGrpHash);
|
||||||
|
|
Loading…
Reference in New Issue