fix leakage in `SFillLogicNode`
This commit is contained in:
parent
46ec10e19a
commit
0bcaf253df
|
@ -817,6 +817,7 @@ void nodesDestroyNode(SNode* pNode) {
|
||||||
destroyLogicNode((SLogicNode*)pLogicNode);
|
destroyLogicNode((SLogicNode*)pLogicNode);
|
||||||
nodesDestroyNode(pLogicNode->pWStartTs);
|
nodesDestroyNode(pLogicNode->pWStartTs);
|
||||||
nodesDestroyNode(pLogicNode->pValues);
|
nodesDestroyNode(pLogicNode->pValues);
|
||||||
|
nodesDestroyList(pLogicNode->pFillExprs);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case QUERY_NODE_LOGIC_PLAN_SORT: {
|
case QUERY_NODE_LOGIC_PLAN_SORT: {
|
||||||
|
|
Loading…
Reference in New Issue