Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
451a15f9
Commit
451a15f9
authored
16 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add note that inlined SQL functions aren't tracked by track_functions.
parent
1491b4c4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/config.sgml
+12
-4
12 additions, 4 deletions
doc/src/sgml/config.sgml
with
12 additions
and
4 deletions
doc/src/sgml/config.sgml
+
12
−
4
View file @
451a15f9
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.20
8
2009/02/
15 18:28:48
tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.20
9
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;
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment