提交 5d429f8d 编写于 作者: P Peter Eisentraut

Minimal message corrections found by spell checker.

上级 376ee150
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.35 2007/01/05 22:19:26 momjian Exp $ * $PostgreSQL: pgsql/src/backend/commands/operatorcmds.c,v 1.36 2007/06/02 23:36:35 petere Exp $
* *
* DESCRIPTION * DESCRIPTION
* The "DefineFoo" routines take the parse tree and pick out the * The "DefineFoo" routines take the parse tree and pick out the
...@@ -99,7 +99,7 @@ DefineOperator(List *names, List *parameters) ...@@ -99,7 +99,7 @@ DefineOperator(List *names, List *parameters)
if (typeName1->setof) if (typeName1->setof)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_FUNCTION_DEFINITION), (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
errmsg("setof type not allowed for operator argument"))); errmsg("SETOF type not allowed for operator argument")));
} }
else if (pg_strcasecmp(defel->defname, "rightarg") == 0) else if (pg_strcasecmp(defel->defname, "rightarg") == 0)
{ {
...@@ -107,7 +107,7 @@ DefineOperator(List *names, List *parameters) ...@@ -107,7 +107,7 @@ DefineOperator(List *names, List *parameters)
if (typeName2->setof) if (typeName2->setof)
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_FUNCTION_DEFINITION), (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
errmsg("setof type not allowed for operator argument"))); errmsg("SETOF type not allowed for operator argument")));
} }
else if (pg_strcasecmp(defel->defname, "procedure") == 0) else if (pg_strcasecmp(defel->defname, "procedure") == 0)
functionName = defGetQualifiedName(defel); functionName = defGetQualifiedName(defel);
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.391 2007/05/08 16:33:51 petere Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.392 2007/06/02 23:36:35 petere Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
...@@ -1979,7 +1979,7 @@ static struct config_string ConfigureNamesString[] = ...@@ -1979,7 +1979,7 @@ static struct config_string ConfigureNamesString[] =
{ {
{"session_replication_role", PGC_SUSET, CLIENT_CONN_STATEMENT, {"session_replication_role", PGC_SUSET, CLIENT_CONN_STATEMENT,
gettext_noop("Sets the sessions behaviour for triggers and rewrite rules."), gettext_noop("Sets the sessions behavior for triggers and rewrite rules."),
gettext_noop("Each session can be either" gettext_noop("Each session can be either"
" \"origin\", \"replica\" or \"local\".") " \"origin\", \"replica\" or \"local\".")
}, },
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.4 2007/01/05 22:19:46 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/tzparser.c,v 1.5 2007/06/02 23:36:35 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -381,7 +381,7 @@ ParseTzFile(const char *filename, int depth, ...@@ -381,7 +381,7 @@ ParseTzFile(const char *filename, int depth,
{ {
ereport(tz_elevel, ereport(tz_elevel,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("@INCLUDE without filename in time zone file \"%s\", line %d", errmsg("@INCLUDE without file name in time zone file \"%s\", line %d",
filename, lineno))); filename, lineno)));
return -1; return -1;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册