Commit 45d1965d authored by mskold@mysql.com's avatar mskold@mysql.com

Bug #18798: mysqld cores on update in ha_ndbcluster call if cluster has failed...

Bug #18798: mysqld cores on update in ha_ndbcluster call if cluster has failed before, added extra check that transaction is started
parent 135f4ab7
...@@ -6447,7 +6447,8 @@ ha_ndbcluster::records_in_range(uint inx, key_range *min_key, ...@@ -6447,7 +6447,8 @@ ha_ndbcluster::records_in_range(uint inx, key_range *min_key,
} }
// Define scan op for the range // Define scan op for the range
if ((trans=m_active_trans) == NULL) if ((trans=m_active_trans) == NULL ||
trans->commitStatus() != NdbTransaction::Started)
{ {
DBUG_PRINT("info", ("no active trans")); DBUG_PRINT("info", ("no active trans"));
if (! (trans=ndb->startTransaction())) if (! (trans=ndb->startTransaction()))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment