mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Add note that inlined SQL functions aren't tracked by track_functions.
This commit is contained in:
parent
1491b4c47d
commit
451a15f95c
@ -1,4 +1,4 @@
|
|||||||
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.208 2009/02/15 18:28:48 tgl Exp $ -->
|
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.209 2009/02/22 23:50:30 tgl Exp $ -->
|
||||||
|
|
||||||
<chapter Id="runtime-config">
|
<chapter Id="runtime-config">
|
||||||
<title>Server Configuration</title>
|
<title>Server Configuration</title>
|
||||||
@ -3361,11 +3361,19 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv;
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Enables tracking of function call counts and time used. Specify
|
Enables tracking of function call counts and time used. Specify
|
||||||
<literal>pl</literal> to count only procedural language functions,
|
<literal>pl</literal> to track only procedural-language functions,
|
||||||
<literal>all</literal> to also track SQL and C language functions.
|
<literal>all</literal> to also track SQL and C language functions.
|
||||||
The default is <literal>none</literal>.
|
The default is <literal>none</literal>, which disables function
|
||||||
Only superusers can change this setting.
|
statistics tracking. Only superusers can change this setting.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
|
<note>
|
||||||
|
<para>
|
||||||
|
SQL-language functions that are simple enough to be <quote>inlined</>
|
||||||
|
into the calling query will not be tracked, regardless of this
|
||||||
|
setting.
|
||||||
|
</para>
|
||||||
|
</note>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user