1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Upgrade documentation connected with shared_preload_libraries et al.

Noplace in the documentation actually defined what these variables
contain.  Define them as lists of arguments for LOAD, and improve
that command's documentation a bit.

Discussion: https://postgr.es/m/CAB-oJtxHVDc3H+Km3CjB9mY1VDzuyaVH_ZYSz7iXcRqCtb93Ew@mail.gmail.com
This commit is contained in:
Tom Lane
2017-06-20 13:39:57 -04:00
parent b710248dd3
commit ba63dbd9ed
3 changed files with 26 additions and 17 deletions

View File

@@ -38,11 +38,12 @@ LOAD '<replaceable class="PARAMETER">filename</replaceable>'
</para>
<para>
The file name is specified in the same way as for shared library
names in <xref linkend="sql-createfunction">; in particular, one
can rely on a search path and automatic addition of the system's standard
shared library file name extension. See <xref linkend="xfunc-c"> for
more information on this topic.
The library file name is typically given as just a bare file name,
which is sought in the server's library search path (set
by <xref linkend="guc-dynamic-library-path">). Alternatively it can be
given as a full path name. In either case the platform's standard shared
library file name extension may be omitted.
See <xref linkend="xfunc-c-dynload"> for more information on this topic.
</para>
<indexterm>