summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <tulin/mysqldev@mysql.com/production.mysql.com>2007-01-17 10:41:52 +0100
committerunknown <tulin/mysqldev@mysql.com/production.mysql.com>2007-01-17 10:41:52 +0100
commit15eebdc0a1549c9af5be4a053f192f21365ab479 (patch)
treefbf16fc209646146c080843195c99585cf8d6474
parent1c24fc316334ca65d6c6d699981925118f7639f0 (diff)
downloadmariadb-git-15eebdc0a1549c9af5be4a053f192f21365ab479.tar.gz
ha_ndbcluster.cc:
Bug #25668 - corrected patch after test failures sql/ha_ndbcluster.cc: Bug #25668 - corrected patch after test failures
-rw-r--r--sql/ha_ndbcluster.cc25
1 files changed, 16 insertions, 9 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc
index c40404f0219..f0ae4bae3a2 100644
--- a/sql/ha_ndbcluster.cc
+++ b/sql/ha_ndbcluster.cc
@@ -6109,7 +6109,23 @@ ndb_get_table_statistics(ha_ndbcluster* file, bool report_error, Ndb* ndb,
DBUG_RETURN(0);
retry:
+ if(report_error)
+ {
+ if (file && pTrans)
+ {
+ reterr= file->ndb_err(pTrans);
+ }
+ else
+ {
+ const NdbError& tmp= error;
+ ERR_PRINT(tmp);
+ reterr= ndb_to_mysql_error(&tmp);
+ }
+ }
+ else
+ reterr= error.code;
+ if (pTrans)
{
ndb->closeTransaction(pTrans);
pTrans= NULL;
@@ -6119,15 +6135,6 @@ retry:
my_sleep(retry_sleep);
continue;
}
- if(report_error)
- {
- const NdbError& tmp= error;
- ERR_PRINT(tmp);
- reterr= ndb_to_mysql_error(&tmp);
- }
- else
- reterr= error.code;
-
break;
} while(1);
DBUG_PRINT("exit", ("failed, reterr: %u, NdbError %u(%s)", reterr,