This commit is contained in:
yihaoDeng 2022-10-27 22:19:47 +08:00
parent 9de0afc8ea
commit 07d8ece370
1 changed files with 6 additions and 0 deletions

View File

@ -4891,6 +4891,12 @@ void destroyTableMergeScanOperatorInfo(void* param) {
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) {
taosArrayDestroy(pTableScanInfo->matchInfo.pList);
}