mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.0-push
This commit is contained in:
commit
a613d4df6b
2 changed files with 31 additions and 1 deletions
|
@ -98,6 +98,8 @@ public:
|
||||||
StartTcTimer = 2509,
|
StartTcTimer = 2509,
|
||||||
StopTcTimer = 2510,
|
StopTcTimer = 2510,
|
||||||
StartPeriodicTcTimer = 2511,
|
StartPeriodicTcTimer = 2511,
|
||||||
|
TcStartDumpIndexOpCount = 2512,
|
||||||
|
TcDumpIndexOpCount = 2513,
|
||||||
CmvmiDumpConnections = 2600,
|
CmvmiDumpConnections = 2600,
|
||||||
CmvmiDumpLongSignalMemory = 2601,
|
CmvmiDumpLongSignalMemory = 2601,
|
||||||
CmvmiSetRestartOnErrorInsert = 2602,
|
CmvmiSetRestartOnErrorInsert = 2602,
|
||||||
|
|
|
@ -4660,6 +4660,7 @@ void Dbtc::copyApi(Signal* signal)
|
||||||
regTmpApiPtr->commitAckMarker = RNIL;
|
regTmpApiPtr->commitAckMarker = RNIL;
|
||||||
regTmpApiPtr->firstTcConnect = RNIL;
|
regTmpApiPtr->firstTcConnect = RNIL;
|
||||||
regTmpApiPtr->lastTcConnect = RNIL;
|
regTmpApiPtr->lastTcConnect = RNIL;
|
||||||
|
releaseAllSeizedIndexOperations(regTmpApiPtr);
|
||||||
}//Dbtc::copyApi()
|
}//Dbtc::copyApi()
|
||||||
|
|
||||||
void Dbtc::unlinkApiConnect(Signal* signal)
|
void Dbtc::unlinkApiConnect(Signal* signal)
|
||||||
|
@ -10241,7 +10242,7 @@ void Dbtc::releaseAbortResources(Signal* signal)
|
||||||
// apiConnectptr.p->apiConnectstate = CS_CONNECTED;
|
// apiConnectptr.p->apiConnectstate = CS_CONNECTED;
|
||||||
apiConnectptr.p->apiConnectstate = CS_ABORTING;
|
apiConnectptr.p->apiConnectstate = CS_ABORTING;
|
||||||
apiConnectptr.p->abortState = AS_IDLE;
|
apiConnectptr.p->abortState = AS_IDLE;
|
||||||
|
releaseAllSeizedIndexOperations(apiConnectptr.p);
|
||||||
if(apiConnectptr.p->m_exec_flag || apiConnectptr.p->apiFailState == ZTRUE){
|
if(apiConnectptr.p->m_exec_flag || apiConnectptr.p->apiFailState == ZTRUE){
|
||||||
jam();
|
jam();
|
||||||
bool ok = false;
|
bool ok = false;
|
||||||
|
@ -10814,6 +10815,33 @@ Dbtc::execDUMP_STATE_ORD(Signal* signal)
|
||||||
signal->theData[0] = TcContinueB::ZTRANS_EVENT_REP;
|
signal->theData[0] = TcContinueB::ZTRANS_EVENT_REP;
|
||||||
sendSignalWithDelay(cownref, GSN_CONTINUEB, signal, 5000, 1);
|
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()
|
}//Dbtc::execDUMP_STATE_ORD()
|
||||||
|
|
||||||
void Dbtc::execSET_VAR_REQ(Signal* signal)
|
void Dbtc::execSET_VAR_REQ(Signal* signal)
|
||||||
|
|
Loading…
Add table
Reference in a new issue