mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -04:00
> Follow up a visit from the style police.
This commit is contained in:
parent
23336cf49c
commit
de92494704
@ -1,7 +1,7 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* plperl.c - perl as a procedural language for PostgreSQL
|
* plperl.c - perl as a procedural language for PostgreSQL
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.123.2.13 2010/05/13 16:43:14 adunstan Exp $
|
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.123.2.14 2010/05/17 20:46:28 adunstan Exp $
|
||||||
*
|
*
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
|
||||||
@ -542,7 +542,7 @@ plperl_safe_init(void)
|
|||||||
if (SvTRUE(ERRSV))
|
if (SvTRUE(ERRSV))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
|
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
|
||||||
errcontext("While executing PLC_TRUSTED.")));
|
errcontext("while executing PLC_TRUSTED")));
|
||||||
|
|
||||||
if (GetDatabaseEncoding() == PG_UTF8)
|
if (GetDatabaseEncoding() == PG_UTF8)
|
||||||
{
|
{
|
||||||
@ -555,7 +555,7 @@ plperl_safe_init(void)
|
|||||||
if (SvTRUE(ERRSV))
|
if (SvTRUE(ERRSV))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
|
(errmsg("%s", strip_trailing_ws(SvPV_nolen(ERRSV))),
|
||||||
errcontext("While executing utf8fix.")));
|
errcontext("while executing utf8fix")));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user