Commit 5e5178a6 authored by joreland@mysql.com's avatar joreland@mysql.com

Reset exec_flag when contacting API

parent 1429c709
...@@ -3767,7 +3767,8 @@ void Dbtc::sendtckeyconf(Signal* signal, UintR TcommitFlag) ...@@ -3767,7 +3767,8 @@ void Dbtc::sendtckeyconf(Signal* signal, UintR TcommitFlag)
return; // No queued TcKeyConf return; // No queued TcKeyConf
}//if }//if
}//if }//if
regApiPtr->m_exec_flag = 0;
TcKeyConf::setNoOfOperations(confInfo, (TopWords >> 1)); TcKeyConf::setNoOfOperations(confInfo, (TopWords >> 1));
if ((TpacketLen > 25) || !is_api){ if ((TpacketLen > 25) || !is_api){
TcKeyConf * const tcKeyConf = (TcKeyConf *)signal->getDataPtrSend(); TcKeyConf * const tcKeyConf = (TcKeyConf *)signal->getDataPtrSend();
...@@ -10999,7 +11000,8 @@ void Dbtc::sendTcIndxConf(Signal* signal, UintR TcommitFlag) ...@@ -10999,7 +11000,8 @@ void Dbtc::sendTcIndxConf(Signal* signal, UintR TcommitFlag)
TcIndxConf::setMarkerFlag(confInfo, Tmarker); TcIndxConf::setMarkerFlag(confInfo, Tmarker);
const UintR TpacketLen = 6 + TopWords; const UintR TpacketLen = 6 + TopWords;
regApiPtr->tcindxrec = 0; regApiPtr->tcindxrec = 0;
regApiPtr->m_exec_flag = 0;
if ((TpacketLen > 25) || !is_api){ if ((TpacketLen > 25) || !is_api){
TcIndxConf * const tcIndxConf = (TcIndxConf *)signal->getDataPtrSend(); TcIndxConf * const tcIndxConf = (TcIndxConf *)signal->getDataPtrSend();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment