summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorunknown <jonas@eel.(none)>2005-09-02 11:50:50 +0200
committerunknown <jonas@eel.(none)>2005-09-02 11:50:50 +0200
commit21ce9ede3c6081b134421854a1776436e68985c4 (patch)
tree28a47927ef41dedb320c8239fd92eba5285860c7 /ndb
parent7056f0b3f01f8ef73216c1e21a082e9fea8714fd (diff)
downloadmariadb-git-21ce9ede3c6081b134421854a1776436e68985c4.tar.gz
ndb - bug#12608
Always abort if node failure occured between startTransaction and commit (can later be improved by wl#2610) ndb/src/kernel/blocks/dbtc/DbtcMain.cpp: Always abort if node failure occured between startTransaction and commit
Diffstat (limited to 'ndb')
-rw-r--r--ndb/src/kernel/blocks/dbtc/DbtcMain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp b/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
index 93b122b9a99..f0861d1f0cc 100644
--- a/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+++ b/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
@@ -4404,7 +4404,7 @@ Dbtc::DIVER_node_fail_handling(Signal* signal, UintR Tgci)
*------------------------------------------------------------------------*/
tabortInd = ZFALSE;
setupFailData(signal);
- if (tabortInd == ZFALSE) {
+ if (false && tabortInd == ZFALSE) {
jam();
commitGciHandling(signal, Tgci);
toCommitHandlingLab(signal);