fix: event_window memory leak

This commit is contained in:
Xiaoyu Wang 2023-02-01 09:34:14 +08:00
parent aae2de07af
commit 024824fb3d
2 changed files with 81 additions and 2 deletions

View File

@ -1103,6 +1103,8 @@ void nodesDestroyNode(SNode* pNode) {
nodesDestroyNode(pLogicNode->pTspk);
nodesDestroyNode(pLogicNode->pTsEnd);
nodesDestroyNode(pLogicNode->pStateExpr);
nodesDestroyNode(pLogicNode->pStartCond);
nodesDestroyNode(pLogicNode->pEndCond);
break;
}
case QUERY_NODE_LOGIC_PLAN_FILL: {

File diff suppressed because one or more lines are too long