(Retrofit from trunk) r5051 N.689 workaround on MySQL number of joins limit (61)

* change MySQLException to store initial exception code
* added a try/catch to launch query with full lazy load (no attr => only id)
* load finalClass field if needed (class is nor standalone nor a final leaf)

SVN:2.4[5052]
This commit is contained in:
Pierre Goiffon
2017-10-19 13:58:39 +00:00
parent 12afcd7cce
commit 11b4085566
2 changed files with 66 additions and 19 deletions

View File

@@ -33,13 +33,15 @@ class MySQLException extends CoreException
{
if ($oException != null)
{
$aContext['mysql_error'] = $oException->getCode();
$aContext['mysql_errno'] = $oException->getMessage();
$aContext['mysql_errno'] = $oException->getCode();
$this->code = $oException->getCode();
$aContext['mysql_error'] = $oException->getMessage();
}
else
{
$aContext['mysql_error'] = CMDBSource::GetError();
$aContext['mysql_errno'] = CMDBSource::GetErrNo();
$this->code = CMDBSource::GetErrNo();
$aContext['mysql_error'] = CMDBSource::GetError();
}
parent::__construct($sIssue, $aContext);
}