#include <records.hpp>
Public Member Functions | |
| bool | check () |
| Uint32 | getLogRecordSize () |
Protected Attributes | |
| Uint32 | m_recordType |
| Uint32 | m_transactionId1 |
| Uint32 | m_transactionId2 |
Friends | |
| NdbOut & | operator<< (NdbOut &, const AbortTransactionRecord &) |
Definition at line 52 of file records.hpp.
| bool AbortTransactionRecord::check | ( | ) |
| Uint32 AbortTransactionRecord::getLogRecordSize | ( | ) |
Definition at line 32 of file records.cpp.
References ABORTTRANSACTIONRECORDSIZE.
Referenced by NDB_COMMAND().
00032 { 00033 return ABORTTRANSACTIONRECORDSIZE; 00034 }
Here is the caller graph for this function:

| NdbOut& operator<< | ( | NdbOut & | no, | |
| const AbortTransactionRecord & | atr | |||
| ) | [friend] |
Definition at line 36 of file records.cpp.
00036 { 00037 no << "----------ABORT TRANSACTION RECORD-------------" << endl << endl; 00038 printOut("Record type:", atr.m_recordType); 00039 printOut("TransactionId1:", atr.m_transactionId1); 00040 printOut("TransactionId2:", atr.m_transactionId2); 00041 no << endl; 00042 return no; 00043 }
Uint32 AbortTransactionRecord::m_recordType [protected] |
Uint32 AbortTransactionRecord::m_transactionId1 [protected] |
Uint32 AbortTransactionRecord::m_transactionId2 [protected] |
1.4.7

