diff options
Diffstat (limited to 'src/interfaces/ecpg/include/ecpgerrno.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpgerrno.h | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/src/interfaces/ecpg/include/ecpgerrno.h b/src/interfaces/ecpg/include/ecpgerrno.h index 58e70a0752b..49e6269d8af 100644 --- a/src/interfaces/ecpg/include/ecpgerrno.h +++ b/src/interfaces/ecpg/include/ecpgerrno.h @@ -44,18 +44,22 @@ #define ECPG_CONNECT -402 /* backend notices, starting at 600 */ -#define ECPG_NOTICE_UNRECOGNIZED -600 - /* NOTICE: (transaction aborted): queries ignored until END */ - /* NOTICE: current transaction is aborted, queries ignored until end of transaction block */ -#define ECPG_NOTICE_QUERY_IGNORED -601 - /* NOTICE: PerformPortalClose: portal "*" not found */ -#define ECPG_NOTICE_UNKNOWN_PORTAL -602 - /* NOTICE: BEGIN: already a transaction in progress */ -#define ECPG_NOTICE_IN_TRANSACTION -603 - /* NOTICE: AbortTransaction and not in in-progress state */ - /* NOTICE: COMMIT: no transaction in progress */ -#define ECPG_NOTICE_NO_TRANSACTION -604 - /* NOTICE: BlankPortalAssignName: portal * already exists */ -#define ECPG_NOTICE_PORTAL_EXISTS -605 - +#define ECPG_NOTICE_UNRECOGNIZED -600 + /* NOTICE: (transaction aborted): queries ignored until END */ + + /* + * NOTICE: current transaction is aborted, queries ignored until end of + * transaction block + */ +#define ECPG_NOTICE_QUERY_IGNORED -601 + /* NOTICE: PerformPortalClose: portal "*" not found */ +#define ECPG_NOTICE_UNKNOWN_PORTAL -602 + /* NOTICE: BEGIN: already a transaction in progress */ +#define ECPG_NOTICE_IN_TRANSACTION -603 + /* NOTICE: AbortTransaction and not in in-progress state */ + /* NOTICE: COMMIT: no transaction in progress */ +#define ECPG_NOTICE_NO_TRANSACTION -604 + /* NOTICE: BlankPortalAssignName: portal * already exists */ +#define ECPG_NOTICE_PORTAL_EXISTS -605 + #endif /* !_ECPG_ERROR_H */ |