diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2010-05-17 19:43:04 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2010-05-17 19:43:04 +0000 |
commit | a6eeb8c10ddb153515cb98c72481693e817c4d2f (patch) | |
tree | 4ed1f75fa75c65e7552a133aeaa5c6a4761cb0d9 /src/pl/plperl/plperl.c | |
parent | 99ad9236bc6fee829017b8d93a96dfb2e16b8f3c (diff) | |
download | postgresql-a6eeb8c10ddb153515cb98c72481693e817c4d2f.tar.gz postgresql-a6eeb8c10ddb153515cb98c72481693e817c4d2f.zip |
Follow up a visit from the style police.
Diffstat (limited to 'src/pl/plperl/plperl.c')
-rw-r--r-- | src/pl/plperl/plperl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pl/plperl/plperl.c b/src/pl/plperl/plperl.c index de6ddb288fd..7c654548837 100644 --- a/src/pl/plperl/plperl.c +++ b/src/pl/plperl/plperl.c @@ -1,7 +1,7 @@ /********************************************************************** * plperl.c - perl as a procedural language for PostgreSQL * - * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.175 2010/05/13 16:39:43 adunstan Exp $ + * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.176 2010/05/17 19:43:04 adunstan Exp $ * **********************************************************************/ @@ -706,7 +706,7 @@ plperl_trusted_init(void) if (SvTRUE(ERRSV)) ereport(ERROR, (errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))), - errcontext("While executing PLC_TRUSTED."))); + errcontext("while executing PLC_TRUSTED"))); if (GetDatabaseEncoding() == PG_UTF8) { @@ -719,7 +719,7 @@ plperl_trusted_init(void) if (SvTRUE(ERRSV)) ereport(ERROR, (errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))), - errcontext("While executing utf8fix."))); + errcontext("while executing utf8fix"))); } /* @@ -761,7 +761,7 @@ plperl_trusted_init(void) if (SvTRUE(ERRSV)) ereport(ERROR, (errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))), - errcontext("While executing plperl.on_plperl_init."))); + errcontext("while executing plperl.on_plperl_init"))); } } |