#include <AlterIndx.hpp>
Definition at line 27 of file AlterIndx.hpp.
| RT_UNDEFINED | |
| RT_USER | |
| RT_CREATE_INDEX | |
| RT_DROP_INDEX | |
| RT_SYSTEMRESTART | |
| RT_NODERESTART | |
| RT_DICT_PREPARE | |
| RT_DICT_TC | |
| RT_DICT_COMMIT | |
| RT_DICT_ABORT | |
| RT_TC | |
| RT_TUX |
Definition at line 31 of file AlterIndx.hpp.
00031 { 00032 RT_UNDEFINED = 0, 00033 RT_USER = 1, 00034 RT_CREATE_INDEX = 2, 00035 RT_DROP_INDEX = 3, 00036 RT_SYSTEMRESTART = 4, 00037 RT_NODERESTART = 5, 00038 RT_DICT_PREPARE = 1 << 4, 00039 RT_DICT_TC = 5 << 4, 00040 RT_DICT_COMMIT = 0xC << 4, 00041 RT_DICT_ABORT = 0xF << 4, 00042 RT_TC = 5 << 8, 00043 RT_TUX = 8 << 8 00044 };
| void AlterIndxReq::addRequestFlag | ( | Uint32 | val | ) | [inline] |
Definition at line 81 of file AlterIndx.hpp.
References BitmaskImpl::getField(), m_requestInfo, and BitmaskImpl::setField().
Referenced by Dbdict::activateIndexes(), Dbdict::alterIndex_sendSlaveReq(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00081 { 00082 val |= BitmaskImpl::getField(1, &m_requestInfo, 16, 16); 00083 BitmaskImpl::setField(1, &m_requestInfo, 16, 16, val); 00084 };
Here is the call graph for this function:

Here is the caller graph for this function:

| Uint32 AlterIndxReq::getConnectionPtr | ( | ) | const [inline] |
Definition at line 65 of file AlterIndx.hpp.
References m_connectionPtr.
Referenced by Dbtux::execALTER_INDX_REQ(), Dbtc::execALTER_INDX_REQ(), and Dbdict::execALTER_INDX_REQ().
00065 { 00066 return m_connectionPtr; 00067 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getIndexId | ( | ) | const [inline] |
Definition at line 91 of file AlterIndx.hpp.
References m_indexId.
Referenced by Dbdict::alterIndex_slavePrepare(), Dbtux::execALTER_INDX_REQ(), and Dbtc::execALTER_INDX_REQ().
00091 { 00092 return m_indexId; 00093 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getIndexVersion | ( | ) | const [inline] |
Definition at line 97 of file AlterIndx.hpp.
References m_indexVersion.
Referenced by Dbtux::execALTER_INDX_REQ().
00097 { 00098 return m_indexVersion; 00099 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getOnline | ( | ) | const [inline] |
Definition at line 103 of file AlterIndx.hpp.
References m_online.
Referenced by Dbdict::alterIndex_slavePrepare(), and Dbtc::execALTER_INDX_REQ().
00103 { 00104 return m_online; 00105 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getOpKey | ( | ) | const [inline] |
Definition at line 109 of file AlterIndx.hpp.
References m_opKey.
Referenced by Dbdict::execALTER_INDX_REQ().
00109 { 00110 return m_opKey; 00111 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getRequestFlag | ( | ) | const [inline] |
Definition at line 78 of file AlterIndx.hpp.
References BitmaskImpl::getField(), and m_requestInfo.
Referenced by Dbdict::execALTER_INDX_REQ(), and Dbdict::OpAlterIndex::save().
00078 { 00079 return BitmaskImpl::getField(1, &m_requestInfo, 16, 16); 00080 };
Here is the call graph for this function:

Here is the caller graph for this function:

| AlterIndxReq::RequestType AlterIndxReq::getRequestType | ( | ) | const [inline] |
Definition at line 71 of file AlterIndx.hpp.
References BitmaskImpl::getField(), and m_requestInfo.
Referenced by Dbtux::execALTER_INDX_REQ(), Dbtc::execALTER_INDX_REQ(), Dbdict::execALTER_INDX_REQ(), and Dbdict::OpAlterIndex::save().
00071 { 00072 const Uint32 val = BitmaskImpl::getField(1, &m_requestInfo, 0, 16); 00073 return (AlterIndxReq::RequestType)val; 00074 }
Here is the call graph for this function:

Here is the caller graph for this function:

| Uint32 AlterIndxReq::getTableId | ( | ) | const [inline] |
Definition at line 85 of file AlterIndx.hpp.
References m_tableId.
Referenced by Dbtux::execALTER_INDX_REQ(), and Dbtc::execALTER_INDX_REQ().
00085 { 00086 return m_tableId; 00087 }
Here is the caller graph for this function:

| Uint32 AlterIndxReq::getUserRef | ( | ) | const [inline] |
Definition at line 59 of file AlterIndx.hpp.
References m_userRef.
Referenced by Dbtux::execALTER_INDX_REQ(), and Dbtc::execALTER_INDX_REQ().
00059 { 00060 return m_userRef; 00061 }
Here is the caller graph for this function:

| void AlterIndxReq::setConnectionPtr | ( | Uint32 | val | ) | [inline] |
Definition at line 68 of file AlterIndx.hpp.
References m_connectionPtr.
Referenced by Dbdict::activateIndexes(), Dbdict::alterIndex_sendSlaveReq(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00068 { 00069 m_connectionPtr = val; 00070 }
Here is the caller graph for this function:

| void AlterIndxReq::setIndexId | ( | Uint32 | val | ) | [inline] |
Definition at line 94 of file AlterIndx.hpp.
References m_indexId.
Referenced by Dbdict::activateIndexes(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00094 { 00095 m_indexId = val; 00096 }
Here is the caller graph for this function:

| void AlterIndxReq::setIndexVersion | ( | Uint32 | val | ) | [inline] |
Definition at line 100 of file AlterIndx.hpp.
References m_indexVersion.
Referenced by Dbdict::activateIndexes(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00100 { 00101 m_indexVersion = val; 00102 }
Here is the caller graph for this function:

| void AlterIndxReq::setOnline | ( | Uint32 | val | ) | [inline] |
Definition at line 106 of file AlterIndx.hpp.
References m_online.
Referenced by Dbdict::activateIndexes(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00106 { 00107 m_online = val; 00108 }
Here is the caller graph for this function:

| void AlterIndxReq::setOpKey | ( | Uint32 | val | ) | [inline] |
Definition at line 112 of file AlterIndx.hpp.
References m_opKey.
Referenced by Dbdict::execALTER_INDX_REQ().
00112 { 00113 m_opKey = val; 00114 }
Here is the caller graph for this function:

| void AlterIndxReq::setRequestType | ( | AlterIndxReq::RequestType | val | ) | [inline] |
Definition at line 75 of file AlterIndx.hpp.
References m_requestInfo.
Referenced by Dbdict::activateIndexes(), Dbdict::alterIndex_sendSlaveReq(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00075 { 00076 m_requestInfo = (Uint32)val; 00077 }
Here is the caller graph for this function:

| void AlterIndxReq::setTableId | ( | Uint32 | val | ) | [inline] |
Definition at line 88 of file AlterIndx.hpp.
References m_tableId.
Referenced by Dbdict::activateIndexes(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00088 { 00089 m_tableId = val; 00090 }
Here is the caller graph for this function:

| void AlterIndxReq::setUserRef | ( | Uint32 | val | ) | [inline] |
Definition at line 62 of file AlterIndx.hpp.
References m_userRef.
Referenced by Dbdict::activateIndexes(), Dbdict::alterIndex_sendSlaveReq(), Dbdict::buildIndex_toOnline(), Dbdict::createIndex_toAlterIndex(), and Dbdict::dropIndex_toAlterIndex().
00062 { 00063 m_userRef = val; 00064 }
Here is the caller graph for this function:

| AlterIndxReq::STATIC_CONST | ( | SignalLength | = 7 |
) |
| bool printALTER_INDX_REQ | ( | FILE * | output, | |
| const Uint32 * | theData, | |||
| Uint32 | len, | |||
| Uint16 | receiverBlockNo | |||
| ) | [friend] |
Definition at line 19 of file AlterIndx.cpp.
00020 { 00021 // const AlterIndxReq * const sig = (AlterIndxReq *) theData; 00022 return false; 00023 }
Uint32 AlterIndxReq::m_connectionPtr [private] |
Definition at line 49 of file AlterIndx.hpp.
Referenced by getConnectionPtr(), and setConnectionPtr().
Uint32 AlterIndxReq::m_indexId [private] |
Uint32 AlterIndxReq::m_indexVersion [private] |
Definition at line 53 of file AlterIndx.hpp.
Referenced by getIndexVersion(), and setIndexVersion().
Uint32 AlterIndxReq::m_online [private] |
Uint32 AlterIndxReq::m_opKey [private] |
Uint32 AlterIndxReq::m_requestInfo [private] |
Definition at line 50 of file AlterIndx.hpp.
Referenced by addRequestFlag(), getRequestFlag(), getRequestType(), and setRequestType().
Uint32 AlterIndxReq::m_tableId [private] |
Uint32 AlterIndxReq::m_userRef [private] |
1.4.7

