summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2015-06-12 12:59:29 +0900
committerFujii Masao <fujii@postgresql.org>2015-06-12 12:59:29 +0900
commit091c02a958fd0ae02b96492d9728efe8526385e6 (patch)
treefcc2414c372f77e760fcd6d1ad55fd7d2757cafb /doc/src
parentcd3cff4778e011c584e1481a6803dec5d4756a6e (diff)
Fix alphabetization in catalogs.sgml.
System catalogs and views should be listed alphabetically in catalog.sgml, but only pg_file_settings view not. This patch also fixes typos in pg_file_settings comments.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/catalogs.sgml156
1 files changed, 78 insertions, 78 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index b6e0268e3fe..5cd8b115cac 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -7625,6 +7625,11 @@
</row>
<row>
+ <entry><link linkend="view-pg-file-settings"><structname>pg_file_settings</structname></link></entry>
+ <entry>file location of parameter settings</entry>
+ </row>
+
+ <row>
<entry><link linkend="view-pg-group"><structname>pg_group</structname></link></entry>
<entry>groups of database users</entry>
</row>
@@ -7680,11 +7685,6 @@
</row>
<row>
- <entry><link linkend="view-pg-file-settings"><structname>pg_file_settings</structname></link></entry>
- <entry>file location of parameter settings</entry>
- </row>
-
- <row>
<entry><link linkend="view-pg-shadow"><structname>pg_shadow</structname></link></entry>
<entry>database users</entry>
</row>
@@ -7999,6 +7999,79 @@
</sect1>
+ <sect1 id="view-pg-file-settings">
+ <title><structname>pg_file_settings</structname></title>
+
+ <indexterm zone="view-pg-file-settings">
+ <primary>pg_file_settings</primary>
+ </indexterm>
+
+ <para>
+ The view <structname>pg_file_settings</structname> provides the file
+ name, line number and value of all parameters which are set through
+ configuration files.
+ In contrast to <structname>pg_settings</structname>, a row is provided for
+ each occurrence of the parameter across all configuration files. This is helpful
+ for discovering why one value may have been used in preference to another
+ when the parameters were loaded.
+ </para>
+
+ <table>
+ <title><structname>pg_file_settings</> Columns</title>
+
+ <tgroup cols="3">
+ <thead>
+ <row>
+ <entry>Name</entry>
+ <entry>Type</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><structfield>sourcefile</structfield></entry>
+ <entry><structfield>text</structfield></entry>
+ <entry>Path to and name of the configration file</entry>
+ </row>
+ <row>
+ <entry><structfield>sourceline</structfield></entry>
+ <entry><structfield>integer</structfield></entry>
+ <entry>
+ Line number within the configuration file where the value was set
+ </entry>
+ </row>
+ <row>
+ <entry><structfield>seqno</structfield></entry>
+ <entry><structfield>integer</structfield></entry>
+ <entry>Order in which the setting was loaded</entry>
+ </row>
+ <row>
+ <entry><structfield>name</structfield></entry>
+ <entry><structfield>text</structfield></entry>
+ <entry>Run-time configuration parameter name</entry>
+ </row>
+ <row>
+ <entry><structfield>setting</structfield></entry>
+ <entry><structfield>text</structfield></entry>
+ <entry>value of the parameter</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+
+ <para>
+ See <xref linkend="config-setting"> for more information about the various
+ ways to change these parameters.
+ </para>
+
+ <para>
+ The <structname>pg_file_settings</structname> view cannot be modified
+ directly as it represents information, as read in at server start or
+ reload time, about all parameter settings across all configuration files.
+ </para>
+
+</sect1>
+
<sect1 id="view-pg-group">
<title><structname>pg_group</structname></title>
@@ -9306,79 +9379,6 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
</sect1>
- <sect1 id="view-pg-file-settings">
- <title><structname>pg_file_settings</structname></title>
-
- <indexterm zone="view-pg-file-settings">
- <primary>pg_file_settings</primary>
- </indexterm>
-
- <para>
- The view <structname>pg_file_settings</structname> provides the file
- name, line number and value of all parameters which are set through
- configuration files.
- In contrast to <structname>pg_settings</structname>, a row is provided for
- each occurrence of the parameter across all configuration files. This is helpful
- for discovering why one value may have been used in preference to another
- when the parameters were loaded.
- </para>
-
- <table>
- <title><structname>pg_file_settings</> Columns</title>
-
- <tgroup cols="3">
- <thead>
- <row>
- <entry>Name</entry>
- <entry>Type</entry>
- <entry>Description</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry><structfield>sourcefile</structfield></entry>
- <entry><structfield>text</structfield></entry>
- <entry>Path to and name of the configration file</entry>
- </row>
- <row>
- <entry><structfield>sourceline</structfield></entry>
- <entry><structfield>integer</structfield></entry>
- <entry>
- Line number within the configuration file where the value was set
- </entry>
- </row>
- <row>
- <entry><structfield>seqno</structfield></entry>
- <entry><structfield>integer</structfield></entry>
- <entry>Order in which the setting was loaded</entry>
- </row>
- <row>
- <entry><structfield>name</structfield></entry>
- <entry><structfield>text</structfield></entry>
- <entry>Run-time configuration parameter name</entry>
- </row>
- <row>
- <entry><structfield>setting</structfield></entry>
- <entry><structfield>text</structfield></entry>
- <entry>value of the parameter</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
-
- <para>
- See <xref linkend="config-setting"> for more information about the various
- ways to change these parameters.
- </para>
-
- <para>
- The <structname>pg_file_settings</structname> view cannot be modified
- directly as it represents information, as read in at server start or
- reload time, about all parameter settings across all configuration files.
- </para>
-
-</sect1>
-
<sect1 id="view-pg-shadow">
<title><structname>pg_shadow</structname></title>