mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
ndb - post merge fixes...
This commit is contained in:
parent
e609add790
commit
ea12fac469
3 changed files with 3 additions and 3 deletions
|
@ -2877,7 +2877,7 @@ void Dbdict::checkSchemaStatus(Signal* signal)
|
|||
// On NR get index from master because index state is not on file
|
||||
Uint32 type= oldEntry->m_tableType;
|
||||
const bool file = (* newEntry == * oldEntry) &&
|
||||
(c_systemRestart || !DictTabInfo::isIndex(type);
|
||||
(c_systemRestart || !DictTabInfo::isIndex(type));
|
||||
newEntry->m_info_words= oldEntry->m_info_words;
|
||||
restartCreateTab(signal, tableId, oldEntry, newEntry, file);
|
||||
return;
|
||||
|
|
|
@ -18344,7 +18344,7 @@ Dblqh::execDUMP_STATE_ORD(Signal* signal)
|
|||
FragrecordPtr fragPtr;
|
||||
if ((fragPtr.i = tabPtr.p->fragrec[j]) != RNIL)
|
||||
{
|
||||
ptrCheckGuard(fragPtr, cfragrecFileSize, fragrecord);
|
||||
c_fragment_pool.getPtr(fragPtr);
|
||||
infoEvent(" frag: %d distKey: %u",
|
||||
tabPtr.p->fragid[j],
|
||||
fragPtr.p->fragDistributionKey);
|
||||
|
|
|
@ -977,7 +977,7 @@ void releaseScanOperation();
|
|||
Remark: Release scan op when hupp'ed trans closed (save memory)
|
||||
******************************************************************************/
|
||||
void
|
||||
NdbTransaction::releaseScanOperation(NdbIndexScanOperation* cursorOp)
|
||||
NdbTransaction::releaseExecutedScanOperation(NdbIndexScanOperation* cursorOp)
|
||||
{
|
||||
DBUG_ENTER("NdbTransaction::releaseExecutedScanOperation");
|
||||
DBUG_PRINT("enter", ("this=0x%x op=0x%x", (UintPtr)this, (UintPtr)cursorOp));
|
||||
|
|
Loading…
Reference in a new issue