diff options
author | unknown <joreland@mysql.com> | 2005-03-01 13:32:11 +0100 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2005-03-01 13:32:11 +0100 |
commit | eab1e62c2ca74396390c891efb70819323369d18 (patch) | |
tree | 07a081b63b7505aae5003cb0415e199f29aac2c2 /ndb/include | |
parent | b89feadf56d074161acdacacd01a1f95f6d60e8d (diff) | |
download | mariadb-git-eab1e62c2ca74396390c891efb70819323369d18.tar.gz |
bug#8853 - ndb - commit after nodefailure on not TC node
set exec_flag in execTC_COMMITREQ so that api will get rollbackrep
ndb/include/ndbapi/NdbConnection.hpp:
Make getConnectedNode public
ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
Fix TC_COMMITREQ in abort cases
ndb/test/ndbapi/testNodeRestart.cpp:
Testcase for bug#8853
ndb/test/run-test/daily-devel-tests.txt:
Testcase for bug#8853
Diffstat (limited to 'ndb/include')
-rw-r--r-- | ndb/include/ndbapi/NdbConnection.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ndb/include/ndbapi/NdbConnection.hpp b/ndb/include/ndbapi/NdbConnection.hpp index 166355cae17..a013489d4c4 100644 --- a/ndb/include/ndbapi/NdbConnection.hpp +++ b/ndb/include/ndbapi/NdbConnection.hpp @@ -448,6 +448,8 @@ public: NdbScanOperation* getNdbScanOperation(const NdbDictionary::Table * table); NdbIndexScanOperation* getNdbIndexScanOperation(const NdbDictionary::Index * index, const NdbDictionary::Table * table); + + Uint32 getConnectedNodeId(); // Get Connected node id private: /** @@ -480,7 +482,6 @@ private: */ void setConnectedNodeId( Uint32 nodeId, Uint32 sequence); - Uint32 getConnectedNodeId(); // Get Connected node id void setMyBlockReference( int ); // Set my block refrerence void setTC_ConnectPtr( Uint32 ); // Sets TC Connect pointer int getTC_ConnectPtr(); // Gets TC Connect pointer |