From: Tom Lane Date: Sun, 22 Feb 2009 23:50:30 +0000 (+0000) Subject: Add note that inlined SQL functions aren't tracked by track_functions. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=e05ec7efd152c05691510e72c19b3326710e61f9;p=users%2Fsimon%2Fpostgres.git Add note that inlined SQL functions aren't tracked by track_functions. --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 5cc395efa2..223911c7c6 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -3361,11 +3361,19 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; Enables tracking of function call counts and time used. Specify - pl to count only procedural language functions, + pl to track only procedural-language functions, all to also track SQL and C language functions. - The default is none. - Only superusers can change this setting. + The default is none, which disables function + statistics tracking. Only superusers can change this setting. + + + + SQL-language functions that are simple enough to be inlined + into the calling query will not be tracked, regardless of this + setting. + +