diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-09-14 10:50:04 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-09-14 10:56:04 -0400 |
commit | c5d11ebd5ac9e5501d0597fb083ced4bb87a1af2 (patch) | |
tree | c15839e1fabd74f3aee9297e1680ceba598cef9b | |
parent | 5d63f21596b04b2bb43597f7001a45a777dfed54 (diff) |
doc: Fix documentation of local_preload_libraries
The documentation used to suggest setting this parameter with ALTER ROLE
SET, but that never worked, so replace it with a working suggestion.
Reported-by: Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
-rw-r--r-- | doc/src/sgml/config.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 23343eef93e..0069f69efd4 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5488,8 +5488,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' this feature is to allow debugging or performance-measurement libraries to be loaded into specific sessions without an explicit <command>LOAD</> command being given. For example, debugging could - be enabled for all sessions under a given user name by setting - this parameter with <command>ALTER ROLE SET</>. + be enabled for a session by setting this parameter via the + <envar>PGOPTIONS</envar> environment variable. </para> <para> |