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
e59ad5fb
Commit
e59ad5fb
authored
16 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Editorial improvements to description of pg_settings view.
parent
3bea93b3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/catalogs.sgml
+15
-12
15 additions, 12 deletions
doc/src/sgml/catalogs.sgml
with
15 additions
and
12 deletions
doc/src/sgml/catalogs.sgml
+
15
−
12
View file @
e59ad5fb
<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.17
7
2008/10/06 13:
05:36 mha
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/catalogs.sgml,v 2.17
8
2008/10/06 13:
59:37 tgl
Exp $ -->
<!--
Documentation of the system catalogs, directed toward PostgreSQL developers
-->
...
...
@@ -6352,7 +6352,8 @@
<para>
The view <structname>pg_settings</structname> provides access to
run-time parameters of the server. It is essentially an alternative
interface to the <command>SHOW</> and <command>SET</> commands.
interface to the <xref linkend="sql-show" endterm="sql-show-title">
and <xref linkend="sql-set" endterm="sql-set-title"> commands.
It also provides access to some facts about each parameter that are
not directly available from <command>SHOW</>, such as minimum and
maximum values.
...
...
@@ -6398,7 +6399,7 @@
<row>
<entry><structfield>extra_desc</structfield></entry>
<entry><type>text</type></entry>
<entry>Additional, more detailed,
information about
the parameter</entry>
<entry>Additional, more detailed,
description of
the parameter</entry>
</row>
<row>
<entry><structfield>context</structfield></entry>
...
...
@@ -6432,7 +6433,7 @@
<row>
<entry><structfield>enumvals</structfield></entry>
<entry><type>text</type></entry>
<entry>Allowed values
i
n enum parameter
s
(NULL for non-enum
<entry>Allowed values
of a
n enum parameter (NULL for non-enum
values)</entry>
</row>
<row>
...
...
@@ -6444,21 +6445,23 @@
<row>
<entry><structfield>reset_val</structfield></entry>
<entry><type>text</type></entry>
<entry>
Default run-time session value for
the parameter t
hat it will
revert to if <command>RESET</command>
</entry>
<entry>
Value that <command>RESET</command> would reset
the parameter t
o
in the current session
</entry>
</row>
<row>
<entry><structfield>sourcefile</structfield></entry>
<entry><type>text</type></entry>
<entry>Input file the current value was set from (NULL for values set in
sources other than configuration files). Helpful when using
configuration include directives.</entry>
<entry>Configuration file the current value was set in (NULL for
values set from sources other than configuration files, or when
examined by a non-superuser).
Helpful when using configuration include directives</entry>
</row>
<row>
<entry><structfield>sourceline</structfield></entry>
<entry><type>text</type></entry>
<entry>Line number within the sourcefile the current value was set
from (NULL for values set in sources other than configuration files)
<entry><type>integer</type></entry>
<entry>Line number within the configuration file the current value was
set at (NULL for values set from sources other than configuration files,
or when examined by a non-superuser)
</entry>
</row>
</tbody>
...
...
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