<listitem>
<para>
This parameter is normally on. When set to <literal>off</literal>, it
- disables validation of the function body string during <xref
- linkend="sql-createfunction"/>. Disabling validation avoids side
- effects of the validation process and avoids false positives due
- to problems such as forward references. Set this parameter
+ disables validation of the routine body string during <xref
+ linkend="sql-createfunction"/> and <xref
+ linkend="sql-createprocedure"/>. Disabling validation avoids side
+ effects of the validation process, in particular preventing false
+ positives due to problems such as forward references.
+ Set this parameter
to <literal>off</literal> before loading functions on behalf of other
users; <application>pg_dump</application> does so automatically.
</para>
When set to <literal>on</literal>, which is the default,
<productname>PostgreSQL</productname> will automatically remove
temporary files after a backend crash. If disabled, the files will be
- retained and may be used for debugging, for example. Repeated crashes
+ retained and may be used for debugging, for example. Repeated crashes
may however result in accumulation of useless files.
</para>
</listitem>
},
{
{"check_function_bodies", PGC_USERSET, CLIENT_CONN_STATEMENT,
- gettext_noop("Check function bodies during CREATE FUNCTION."),
+ gettext_noop("Check routine bodies during CREATE FUNCTION and CREATE PROCEDURE."),
NULL
},
&check_function_bodies,