diff options
author | Tom Lane | 2003-07-27 21:49:55 +0000 |
---|---|---|
committer | Tom Lane | 2003-07-27 21:49:55 +0000 |
commit | b556e8200e55261cf41de7ce8be4b38b0a062c2b (patch) | |
tree | 46ee8f2361510e4a530ab78e24275d25c1bc1599 /src/include/utils/errcodes.h | |
parent | 606debf26833371b9ea56f297d9ec0d2ada534d5 (diff) |
elog mop-up: bring some straggling fprintf(stderr)'s into the elog world.
Diffstat (limited to 'src/include/utils/errcodes.h')
-rw-r--r-- | src/include/utils/errcodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/errcodes.h b/src/include/utils/errcodes.h index 818b38318a5..a6f540fc42c 100644 --- a/src/include/utils/errcodes.h +++ b/src/include/utils/errcodes.h @@ -11,7 +11,7 @@ * * Copyright (c) 2003, PostgreSQL Global Development Group * - * $Id: errcodes.h,v 1.1 2003/07/27 18:37:52 tgl Exp $ + * $Id: errcodes.h,v 1.2 2003/07/27 21:49:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -297,6 +297,7 @@ /* Class F0 - Configuration File Error (PostgreSQL-specific error class) */ #define ERRCODE_CONFIG_FILE_ERROR MAKE_SQLSTATE('F','0', '0','0','0') +#define ERRCODE_LOCK_FILE_EXISTS MAKE_SQLSTATE('F','0', '0','0','1') /* Class XX - Internal Error (PostgreSQL-specific error class) */ /* (this is for "can't-happen" conditions and software bugs) */ |