Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ab5fe2a9
Commit
ab5fe2a9
authored
Sep 02, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move pg_settings doc into the right section.
parent
c7be7ffd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
63 deletions
+56
-63
doc/src/sgml/catalogs.sgml
doc/src/sgml/catalogs.sgml
+1
-62
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+55
-1
No files found.
doc/src/sgml/catalogs.sgml
View file @
ab5fe2a9
<!--
Documentation of the system catalogs, directed toward PostgreSQL developers
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.5
7 2002/09/02 05:44:43
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/catalogs.sgml,v 2.5
8 2002/09/02 05:52:34
momjian Exp $
-->
<chapter id="catalogs">
...
...
@@ -161,11 +161,6 @@
<entry>database users</entry>
</row>
<row>
<entry>pg_settings</entry>
<entry>current session run-time parameters</entry>
</row>
<row>
<entry>pg_statistic</entry>
<entry>optimizer statistics</entry>
...
...
@@ -2871,62 +2866,6 @@
</sect1>
<sect1 id="catalog-pg-settings">
<title>pg_settings</title>
<para>
<structname>pg_settings</structname> virtual table allows display and update
of current session run-time parameters. There is one entry for each of the
available parameters provided by <command>SHOW ALL</command>. But it is
in a form that allows it to be joined with other relations and have a
selection criteria applied.
</para>
<para>
An <command>UPDATE</command> performed on <structname>pg_settings</structname>
is equivalent to executing the <command>SET</command> command on that named
parameter. The change only affects the value used by the current session. If
an <command>UPDATE</command> is issued within a transaction that is later
aborted, the effects of the <command>UPDATE</command> command disappear when
the transaction is rolled back. Once the surrounding transaction is
committed, the effects will persist until the end of the session, unless
overridden by another <command>UPDATE</command> or <command>SET</command>.
</para>
<table>
<title>pg_settings Columns</title>
<tgroup cols=4>
<thead>
<row>
<entry>Name</entry>
<entry>Type</entry>
<entry>References</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>name</entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>The name of a current session run-time parameter</entry>
</row>
<row>
<entry>setting</entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>The value of a current session run-time parameter</entry>
</row>
</tbody>
</tgroup>
</table>
</sect1>
<sect1 id="catalog-pg-statistic">
<title>pg_statistic</title>
...
...
doc/src/sgml/runtime.sgml
View file @
ab5fe2a9
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.13
3 2002/09/02 05:42:5
4 momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.13
4 2002/09/02 05:52:3
4 momjian Exp $
-->
<Chapter Id="runtime">
...
...
@@ -554,6 +554,60 @@ env PGOPTIONS='-c geqo=off' psql
settings.
</para>
<sect2 id="catalog-pg-settings">
<title>pg_settings</title>
<para>
<structname>pg_settings</structname> virtual table allows display and update
of current session run-time parameters. There is one entry for each of the
available parameters provided by <command>SHOW ALL</command>. But it is
in a form that allows it to be joined with other relations and have a
selection criteria applied.
</para>
<para>
An <command>UPDATE</command> performed on <structname>pg_settings</structname>
is equivalent to executing the <command>SET</command> command on that named
parameter. The change only affects the value used by the current session. If
an <command>UPDATE</command> is issued within a transaction that is later
aborted, the effects of the <command>UPDATE</command> command disappear when
the transaction is rolled back. Once the surrounding transaction is
committed, the effects will persist until the end of the session, unless
overridden by another <command>UPDATE</command> or <command>SET</command>.
</para>
<table>
<title>pg_settings Columns</title>
<tgroup cols=4>
<thead>
<row>
<entry>Name</entry>
<entry>Type</entry>
<entry>References</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>name</entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>The name of a current session run-time parameter</entry>
</row>
<row>
<entry>setting</entry>
<entry><type>text</type></entry>
<entry></entry>
<entry>The value of a current session run-time parameter</entry>
</row>
</tbody>
</tgroup>
</sect2>
<sect2 id="runtime-config-optimizer">
<title>Planner and Optimizer Tuning</title>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment