Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ef60de6

Browse files
committed
doc: Add note about pg_settings and customized options into catalogs.sgml.
The pg_settings view does not display customized options until the extension module that defines them has been loaded. This commit add the note about that behavior, into the docs. Author: John Naylor Reviewed-by: Tom Lane, Fujii Masao Discussion: https://postgr.es/m/CAFBsxsGsBZsG=cLM0Op5HFb2Ks6SzJrOc_eRO_jcKSNuqFRKnQ@mail.gmail.com
1 parent 3636efa commit ef60de6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

doc/src/sgml/catalogs.sgml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12279,10 +12279,14 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
1227912279
</para>
1228012280

1228112281
<para>
12282-
The <structname>pg_settings</structname> view cannot be inserted into or
12283-
deleted from, but it can be updated. An <command>UPDATE</command> applied
12284-
to a row of <structname>pg_settings</structname> is equivalent to executing
12285-
the <command>SET</command> command on that named
12282+
This view does not display <link linkend="runtime-config-custom">customized options</link>
12283+
until the extension module that defines them has been loaded.
12284+
</para>
12285+
12286+
<para>
12287+
This view cannot be inserted into or deleted from, but it can be updated. An
12288+
<command>UPDATE</command> applied to a row of <structname>pg_settings</structname>
12289+
is equivalent to executing the <command>SET</command> command on that named
1228612290
parameter. The change only affects the value used by the current
1228712291
session. If an <command>UPDATE</command> is issued within a transaction
1228812292
that is later aborted, the effects of the <command>UPDATE</command> command

0 commit comments

Comments
 (0)