|
7 | 7 | * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 |
| - * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.69 2004/06/24 21:03:42 tgl Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.70 2004/07/06 19:51:59 momjian Exp $ |
11 | 11 | *
|
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
|
32 | 32 | #defineNOTICE18/* Helpful messages to users about query
|
33 | 33 | * operation; sent to client and server
|
34 | 34 | * log by default. */
|
35 |
| -#defineWARNING19/* Warnings */ |
| 35 | +#defineWARNING19/* Warnings. NOTICE is for expected messages |
| 36 | + * like implicit sequence creation by SERIAL. |
| 37 | + * WARNING is for unexpected messages. |
| 38 | + */ |
36 | 39 | #defineERROR20/* user error - abort transaction; return
|
37 | 40 | * to known state */
|
38 | 41 | /* Save ERROR value in PGERROR so it can be restored when Win32 includes
|
|