The world's most popular open source database
#include <DbUtil.hpp>
Public Member Functions | |
| Transaction (ArrayPool< Page32 > &ap, ArrayPool< Operation > &op) | |
| bool | complete () const |
| void | print () const |
Public Attributes | |
| Uint32 | clientRef |
| Uint32 | clientData |
| Array< Page32 > | executePages |
| Uint32 | gsn |
| union { | |
| struct { | |
| Uint32 sequenceId | |
| Uint32 requestType | |
| } sequence | |
| }; | |
| Uint32 | connectPtr |
| Uint32 | transId [2] |
| SLList< Operation > | operations |
| Uint32 | errorCode |
| Uint32 | noOfRetries |
| Uint32 | sent |
| Uint32 | recv |
| union { | |
| Uint32 nextPool | |
| Uint32 nextList | |
| }; | |
| Uint32 | prevList |
Definition at line 321 of file DbUtil.hpp.
| bool DbUtil::Transaction::complete | ( | ) | const [inline] |
| void DbUtil::Transaction::print | ( | ) | const [inline] |
Definition at line 356 of file DbUtil.hpp.
References clientData, clientRef, errorCode, gsn, Ptr< T >::i, ndbout(), Ptr< T >::p, recv, RNIL, and sent.
00356 { 00357 ndbout << "[-Transaction-" << endl 00358 << " clientRef: " << clientRef 00359 << ", clientData: " << clientData 00360 << ", gsn: " << gsn 00361 << ", errorCode: " << errorCode 00362 << endl 00363 << " sent: " << sent << " operations" 00364 << ", recv: " << recv << " completed operations"; 00365 OperationPtr opPtr; 00366 this->operations.first(opPtr); 00367 while(opPtr.i != RNIL){ 00368 ndbout << "[-Operation-" << endl; 00369 opPtr.p->print(); 00370 this->operations.next(opPtr); 00371 } 00372 ndbout << "]" << endl; 00373 }
Here is the call graph for this function:

| union { ... } |
| union { ... } |
Definition at line 340 of file DbUtil.hpp.
Definition at line 327 of file DbUtil.hpp.
Definition at line 352 of file DbUtil.hpp.
Definition at line 351 of file DbUtil.hpp.
Definition at line 345 of file DbUtil.hpp.
Definition at line 342 of file DbUtil.hpp.
Referenced by DbUtil::getResultSet(), and DbUtil::reportSequence().
Definition at line 354 of file DbUtil.hpp.
Definition at line 336 of file DbUtil.hpp.
| struct { ... } DbUtil::Transaction::sequence |
Sequence transaction
Referenced by DbUtil::reportSequence().
Definition at line 335 of file DbUtil.hpp.
1.4.7

