fix some problem

This commit is contained in:
pengrongkun94@qq.com 2025-01-03 09:35:24 +08:00
parent ec27e0e0d7
commit 412c2efd33
1 changed files with 1 additions and 1 deletions

View File

@ -2142,7 +2142,6 @@ static int32_t parseOneStbRow(SInsertParseContext* pCxt, SVnodeModifyOpStmt* pSt
if (pCxt->isStmtBind) {
int32_t tbnameIdx = getTbnameSchemaIndex(pStbRowsCxt->pStbMeta);
code = initTableColSubmitDataWithBoundInfo(*ppTableDataCxt, ctbCols);
insDestroyBoundColInfo(&ctbCols);
} else {
code = initTableColSubmitData(*ppTableDataCxt);
}
@ -2162,6 +2161,7 @@ static int32_t parseOneStbRow(SInsertParseContext* pCxt, SVnodeModifyOpStmt* pSt
}
clearStbRowsDataContext(pStbRowsCxt);
insDestroyBoundColInfo(&ctbCols);
return code;
}