Commit 73b4f5ef authored by unknown's avatar unknown

Fixed initialization of trans id

parent 92f58a4b
...@@ -185,9 +185,11 @@ Ndb::executeMessage(void* NdbObject, ...@@ -185,9 +185,11 @@ Ndb::executeMessage(void* NdbObject,
void Ndb::connected(Uint32 ref) void Ndb::connected(Uint32 ref)
{ {
theMyRef= ref; theMyRef= ref;
theNode= refToNode(theMyRef); theNode= refToNode(ref);
if (theNdbBlockNumber >= 0) Uint64 tBlockNo= refToBlock(ref);
if (theNdbBlockNumber >= 0){
assert(theMyRef == numberToRef(theNdbBlockNumber, theNode)); assert(theMyRef == numberToRef(theNdbBlockNumber, theNode));
}
TransporterFacade * theFacade = TransporterFacade::instance(); TransporterFacade * theFacade = TransporterFacade::instance();
int i; int i;
...@@ -198,11 +200,11 @@ void Ndb::connected(Uint32 ref) ...@@ -198,11 +200,11 @@ void Ndb::connected(Uint32 ref)
theNoOfDBnodes++; theNoOfDBnodes++;
} }
} }
theFirstTransId = ((Uint64)theNdbBlockNumber << 52)+ theFirstTransId = ((Uint64)tBlockNo << 52)+
((Uint64)theNode << 40); ((Uint64)theNode << 40);
theFirstTransId += theFacade->m_max_trans_id; theFirstTransId += theFacade->m_max_trans_id;
// assert(0); // assert(0);
DBUG_PRINT("info",("connected with ref=%x, id=%d, no_db_nodes=%d, first_trans_id=%d", DBUG_PRINT("info",("connected with ref=%x, id=%d, no_db_nodes=%d, first_trans_id=%lx",
theMyRef, theMyRef,
theNode, theNode,
theNoOfDBnodes, theNoOfDBnodes,
......
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