|
7 | 7 | * Portions Copyright (c) 1996-2008, 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.95 2008/10/0917:24:05 alvherre Exp $ |
| 10 | + * $PostgreSQL: pgsql/src/include/utils/elog.h,v 1.96 2008/10/0922:22:31 alvherre Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
|
97 | 97 | * wish to use a different message catalog from the backend's.To avoid having |
98 | 98 | * one copy of the default text domain per .o file, we define it as NULL here |
99 | 99 | * and have errstart insert the default text domain. Modules can either use |
100 | | - * ereport_domain() directly, orpreferrably they can override the TEXTDOMAIN |
| 100 | + * ereport_domain() directly, orpreferably they can override the TEXTDOMAIN |
101 | 101 | * macro. |
102 | 102 | *---------- |
103 | 103 | */ |
@@ -281,7 +281,7 @@ typedef struct ErrorData |
281 | 281 | constchar*filename;/* __FILE__ of ereport() call */ |
282 | 282 | intlineno;/* __LINE__ of ereport() call */ |
283 | 283 | constchar*funcname;/* __func__ of ereport() call */ |
284 | | -constchar*domain;/* message domain, NULL if default */ |
| 284 | +constchar*domain;/* message domain */ |
285 | 285 | intsqlerrcode;/* encoded ERRSTATE */ |
286 | 286 | char*message;/* primary error message */ |
287 | 287 | char*detail;/* detail error message */ |
|