opt mem
This commit is contained in:
parent
9de0afc8ea
commit
07d8ece370
|
@ -4891,6 +4891,12 @@ void destroyTableMergeScanOperatorInfo(void* param) {
|
||||||
|
|
||||||
tsdbReaderClose(pTableScanInfo->pReader);
|
tsdbReaderClose(pTableScanInfo->pReader);
|
||||||
|
|
||||||
|
for (int i = 0; i < taosArrayGetSize(pTableScanInfo->queryConds); i++) {
|
||||||
|
SQueryTableDataCond* pCond = taosArrayGet(pTableScanInfo->queryConds, i);
|
||||||
|
taosMemoryFree(pCond->colList);
|
||||||
|
}
|
||||||
|
taosArrayDestroy(pTableScanInfo->queryConds);
|
||||||
|
|
||||||
if (pTableScanInfo->matchInfo.pList != NULL) {
|
if (pTableScanInfo->matchInfo.pList != NULL) {
|
||||||
taosArrayDestroy(pTableScanInfo->matchInfo.pList);
|
taosArrayDestroy(pTableScanInfo->matchInfo.pList);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue