mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Merge perch.ndb.mysql.com:/home/jonas/src/mysql-4.1
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0 ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Auto merged
This commit is contained in:
commit
2740651e3a
2 changed files with 31 additions and 1 deletions
|
@ -98,6 +98,8 @@ public:
|
|||
StartTcTimer = 2509,
|
||||
StopTcTimer = 2510,
|
||||
StartPeriodicTcTimer = 2511,
|
||||
TcStartDumpIndexOpCount = 2512,
|
||||
TcDumpIndexOpCount = 2513,
|
||||
CmvmiDumpConnections = 2600,
|
||||
CmvmiDumpLongSignalMemory = 2601,
|
||||
CmvmiSetRestartOnErrorInsert = 2602,
|
||||
|
|
|
@ -4660,6 +4660,7 @@ void Dbtc::copyApi(Signal* signal)
|
|||
regTmpApiPtr->commitAckMarker = RNIL;
|
||||
regTmpApiPtr->firstTcConnect = RNIL;
|
||||
regTmpApiPtr->lastTcConnect = RNIL;
|
||||
releaseAllSeizedIndexOperations(regTmpApiPtr);
|
||||
}//Dbtc::copyApi()
|
||||
|
||||
void Dbtc::unlinkApiConnect(Signal* signal)
|
||||
|
@ -10241,7 +10242,7 @@ void Dbtc::releaseAbortResources(Signal* signal)
|
|||
// apiConnectptr.p->apiConnectstate = CS_CONNECTED;
|
||||
apiConnectptr.p->apiConnectstate = CS_ABORTING;
|
||||
apiConnectptr.p->abortState = AS_IDLE;
|
||||
|
||||
releaseAllSeizedIndexOperations(apiConnectptr.p);
|
||||
if(apiConnectptr.p->m_exec_flag || apiConnectptr.p->apiFailState == ZTRUE){
|
||||
jam();
|
||||
bool ok = false;
|
||||
|
@ -10814,6 +10815,33 @@ Dbtc::execDUMP_STATE_ORD(Signal* signal)
|
|||
signal->theData[0] = TcContinueB::ZTRANS_EVENT_REP;
|
||||
sendSignalWithDelay(cownref, GSN_CONTINUEB, signal, 5000, 1);
|
||||
}
|
||||
|
||||
if (dumpState->args[0] == DumpStateOrd::TcStartDumpIndexOpCount)
|
||||
{
|
||||
static int frequency = 1;
|
||||
if (signal->getLength() > 1)
|
||||
frequency = signal->theData[1];
|
||||
else
|
||||
if (refToBlock(signal->getSendersBlockRef()) != DBTC)
|
||||
frequency = 1;
|
||||
|
||||
if (frequency)
|
||||
{
|
||||
dumpState->args[0] = DumpStateOrd::TcDumpIndexOpCount;
|
||||
execDUMP_STATE_ORD(signal);
|
||||
dumpState->args[0] = DumpStateOrd::TcStartDumpIndexOpCount;
|
||||
|
||||
Uint32 delay = 1000 * (frequency > 25 ? 25 : frequency);
|
||||
sendSignalWithDelay(cownref, GSN_DUMP_STATE_ORD, signal, delay, 1);
|
||||
}
|
||||
}
|
||||
|
||||
if (dumpState->args[0] == DumpStateOrd::TcDumpIndexOpCount)
|
||||
{
|
||||
infoEvent("IndexOpCount: pool: %d free: %d",
|
||||
c_theIndexOperationPool.getSize(),
|
||||
c_theIndexOperationPool.getNoOfFree());
|
||||
}
|
||||
}//Dbtc::execDUMP_STATE_ORD()
|
||||
|
||||
void Dbtc::execSET_VAR_REQ(Signal* signal)
|
||||
|
|
Loading…
Reference in a new issue