Skip to content
Snippets Groups Projects
Commit c6afd5d4 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Syntax error

parent 1111e89e
Branches
Tags
No related merge requests found
......@@ -465,7 +465,7 @@ class DoliDb
$error_regexps = array(
'/(Table does not exist\.|Relation [\"\'].*[\"\'] does not exist|sequence does not exist|class ".+" not found)$/' => DB_ERROR_NOSUCHTABLE,
'/table [\"\'].*[\"\'] does not exist/' => DB_ERROR_NOSUCHTABLE,
'/Relation [\"\'].*[\"\'] already exists|Cannot insert a duplicate key into (a )?unique index.*/' => DB_RECORD_ERROR_ALREADY_EXISTS,
'/Relation [\"\'].*[\"\'] already exists|Cannot insert a duplicate key into (a )?unique index.*/' => DB_ERROR_RECORD_ALREADY_EXISTS,
'/divide by zero$/' => DB_ERROR_DIVZERO,
'/pg_atoi: error in .*: can\'t parse /' => DB_ERROR_INVALID_NUMBER,
'/ttribute [\"\'].*[\"\'] not found$|Relation [\"\'].*[\"\'] does not have attribute [\"\'].*[\"\']/' => DB_ERROR_NOSUCHFIELD,
......@@ -481,8 +481,6 @@ class DoliDb
return DB_ERROR;
}
}
/**
\brief Renvoie le texte de l'erreur pgsql de l'operation precedente.
\return error_text
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment