Merge branch '3.0' of https://github.com/taosdata/TDengine into enh/TS-4723-3.0

This commit is contained in:
Hongze Cheng 2024-05-23 19:05:24 +08:00
commit a33fd60721
1 changed files with 1 additions and 1 deletions

View File

@ -1409,7 +1409,7 @@ static int32_t mndTransExecuteActionsSerial(SMnode *pMnode, STrans *pTrans, SArr
mInfo("trans:%d, execute %d actions serial, current redoAction:%d", pTrans->id, numOfActions, pTrans->actionPos);
for (int32_t action = pTrans->actionPos; action < numOfActions; ++action) {
STransAction *pAction = taosArrayGet(pActions, pTrans->actionPos);
STransAction *pAction = taosArrayGet(pActions, action);
code = mndTransExecSingleAction(pMnode, pTrans, pAction, topHalf);
if (code == 0) {