ha_ndbcluster.cc:

Bug #25668    - corrected patch after test failures
This commit is contained in:
tulin/mysqldev@mysql.com/production.mysql.com 2007-01-17 10:41:52 +01:00
parent 1d6fe0ffaa
commit 2fed34d7ea

View file

@ -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,