mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Message style improvements
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.354 2006/10/04 00:30:03 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.355 2006/10/06 17:14:00 petere Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@@ -894,7 +894,7 @@ static struct config_bool ConfigureNamesBool[] =
|
||||
{"array_nulls", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
|
||||
gettext_noop("Enable input of NULL elements in arrays."),
|
||||
gettext_noop("When turned on, unquoted NULL in an array input "
|
||||
"value means a NULL value; "
|
||||
"value means a null value; "
|
||||
"otherwise it is taken literally.")
|
||||
},
|
||||
&Array_nulls,
|
||||
@@ -1611,7 +1611,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
|
||||
{
|
||||
{"gin_fuzzy_search_limit", PGC_USERSET, UNGROUPED,
|
||||
gettext_noop("Sets the maximum allowed result for exact search by gin."),
|
||||
gettext_noop("Sets the maximum allowed result for exact search by GIN."),
|
||||
NULL,
|
||||
0
|
||||
},
|
||||
@@ -2133,7 +2133,7 @@ static struct config_string ConfigureNamesString[] =
|
||||
},
|
||||
{
|
||||
{"timezone_abbreviations", PGC_USERSET, CLIENT_CONN_LOCALE,
|
||||
gettext_noop("Selects a file of timezone abbreviations"),
|
||||
gettext_noop("Selects a file of time zone abbreviations"),
|
||||
NULL,
|
||||
},
|
||||
&timezone_abbreviations_string,
|
||||
|
@@ -13,7 +13,7 @@
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.2 2006/10/04 00:30:04 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.3 2006/10/06 17:14:00 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -233,7 +233,7 @@ addToArray(tzEntry **base, int *arraysize, int n,
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("time zone abbreviation \"%s\" is multiply defined",
|
||||
entry->abbrev),
|
||||
errdetail("Time zone file \"%s\", line %d conflicts with file \"%s\", line %d.",
|
||||
errdetail("Entry in time zone file \"%s\", line %d, conflicts with entry in file \"%s\", line %d.",
|
||||
midptr->filename, midptr->lineno,
|
||||
entry->filename, entry->lineno)));
|
||||
return -1;
|
||||
|
Reference in New Issue
Block a user