mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-25 02:13:44 +03:00
Add a few missing errcodes
They are used in the code but not defined in the SGML docs so the script failed to parse them.
This commit is contained in:
parent
081bf843d2
commit
40dca9924d
2
NEWS
2
NEWS
|
@ -16,6 +16,8 @@ What's new in psycopg 2.5.4
|
|||
- Fixed segfault if COPY statements are executed instead of using the
|
||||
proper methods (:ticket:`#219`).
|
||||
- Don't ignore silently the `cursor.callproc` argument without a length.
|
||||
- Added a few errors missing from `~psycopg2.errorcodes`, defined by
|
||||
PostgreSQL but not documented.
|
||||
|
||||
|
||||
What's new in psycopg 2.5.3
|
||||
|
|
|
@ -49,7 +49,7 @@ An example of the available constants defined in the module:
|
|||
>>> errorcodes.UNDEFINED_TABLE
|
||||
'42P01'
|
||||
|
||||
Constants representing all the error values documented by PostgreSQL versions
|
||||
Constants representing all the error values defined by PostgreSQL versions
|
||||
between 8.1 and 9.2 are included in the module.
|
||||
|
||||
|
||||
|
|
|
@ -284,6 +284,10 @@ STATEMENT_COMPLETION_UNKNOWN = '40003'
|
|||
DEADLOCK_DETECTED = '40P01'
|
||||
|
||||
# Class 42 - Syntax Error or Access Rule Violation
|
||||
UNDEFINED_PSTATEMENT = '26000'
|
||||
UNDEFINED_CURSOR = '34000'
|
||||
UNDEFINED_DATABASE = '3D000'
|
||||
UNDEFINED_SCHEMA = '3F000'
|
||||
SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION = '42000'
|
||||
INSUFFICIENT_PRIVILEGE = '42501'
|
||||
SYNTAX_ERROR = '42601'
|
||||
|
|
Loading…
Reference in New Issue
Block a user