Commit 1a04ae1a authored by joreland@mysql.com's avatar joreland@mysql.com

bug#4586

Removed printouts
parent f3d86403
...@@ -6400,9 +6400,6 @@ void Dbacc::execEXPANDCHECK2(Signal* signal) ...@@ -6400,9 +6400,6 @@ void Dbacc::execEXPANDCHECK2(Signal* signal)
}//if }//if
}//if }//if
ndbout_c("Expanding tab: %d frag: %d",
fragrecptr.p->myTableId, fragrecptr.p->myfid);
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
/* WE START BY FINDING THE PAGE, THE PAGE INDEX AND THE PAGE DIRECTORY*/ /* WE START BY FINDING THE PAGE, THE PAGE INDEX AND THE PAGE DIRECTORY*/
/* OF THE NEW BUCKET WHICH SHALL RECEIVE THE ELEMENT WHICH HAVE A 1 IN*/ /* OF THE NEW BUCKET WHICH SHALL RECEIVE THE ELEMENT WHICH HAVE A 1 IN*/
...@@ -6535,7 +6532,7 @@ void Dbacc::reenable_expand_after_redo_log_exection_complete(Signal* signal){ ...@@ -6535,7 +6532,7 @@ void Dbacc::reenable_expand_after_redo_log_exection_complete(Signal* signal){
/** /**
* Hmm... this means that it's alreay has been reenabled... * Hmm... this means that it's alreay has been reenabled...
*/ */
//ndbassert(false); ndbassert(false);
continue; continue;
case 1: case 1:
/** /**
...@@ -7036,9 +7033,6 @@ void Dbacc::execSHRINKCHECK2(Signal* signal) ...@@ -7036,9 +7033,6 @@ void Dbacc::execSHRINKCHECK2(Signal* signal)
fragrecptr.p->p--; fragrecptr.p->p--;
}//if }//if
ndbout_c("Shrinking tab: %d frag: %d",
fragrecptr.p->myTableId, fragrecptr.p->myfid);
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
/* WE START BY FINDING THE NECESSARY INFORMATION OF THE BUCKET TO BE */ /* WE START BY FINDING THE NECESSARY INFORMATION OF THE BUCKET TO BE */
/* REMOVED WHICH WILL SEND ITS ELEMENTS TO THE RECEIVING BUCKET. */ /* REMOVED WHICH WILL SEND ITS ELEMENTS TO THE RECEIVING BUCKET. */
...@@ -7236,7 +7230,7 @@ void Dbacc::endofshrinkbucketLab(Signal* signal) ...@@ -7236,7 +7230,7 @@ void Dbacc::endofshrinkbucketLab(Signal* signal)
signal->theData[2] = fragrecptr.p->maxp; signal->theData[2] = fragrecptr.p->maxp;
signal->theData[3] = fragrecptr.p->expandFlag; signal->theData[3] = fragrecptr.p->expandFlag;
fragrecptr.p->expandFlag = 2; fragrecptr.p->expandFlag = 2;
sendSignal(cownBlockref, GSN_SHRINKCHECK2, signal, 3, JBB); sendSignal(cownBlockref, GSN_SHRINKCHECK2, signal, 4, JBB);
}//if }//if
}//if }//if
}//if }//if
......
...@@ -15278,14 +15278,11 @@ void Dblqh::srFourthComp(Signal* signal) ...@@ -15278,14 +15278,11 @@ void Dblqh::srFourthComp(Signal* signal)
if(cstartType == NodeState::ST_SYSTEM_RESTART){ if(cstartType == NodeState::ST_SYSTEM_RESTART){
fragptr.i = c_redo_log_complete_frags; fragptr.i = c_redo_log_complete_frags;
ndbout_c("All fragment complete - ");
while(fragptr.i != RNIL){ while(fragptr.i != RNIL){
ptrCheckGuard(fragptr, cfragrecFileSize, fragrecord); ptrCheckGuard(fragptr, cfragrecFileSize, fragrecord);
signal->theData[0] = fragptr.p->tabRef; signal->theData[0] = fragptr.p->tabRef;
signal->theData[1] = fragptr.p->fragId; signal->theData[1] = fragptr.p->fragId;
sendSignal(DBACC_REF, GSN_EXPANDCHECK2, signal, 2, JBB); sendSignal(DBACC_REF, GSN_EXPANDCHECK2, signal, 2, JBB);
ndbout_c("table: %d fragment: %d",
fragptr.p->tabRef, fragptr.p->fragId);
fragptr.i = fragptr.p->nextFrag; fragptr.i = fragptr.p->nextFrag;
} }
} }
......
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