mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
parent
1d6fe0ffaa
commit
2fed34d7ea
1 changed files with 16 additions and 9 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue