diff options
author | Peter Eisentraut | 2014-09-14 14:50:04 +0000 |
---|---|---|
committer | Peter Eisentraut | 2014-09-14 14:56:10 +0000 |
commit | 7c8b0adba5101215ac92392925f81ce0f677bd12 (patch) | |
tree | 29cb3f2b89b2bcc45a8d7c123e31e11bfd68057e | |
parent | 4d96e93cb4dbd18732001a98b8d1c6a8b1be0503 (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 <[email protected]>
-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 cf4b6539b70..aeefbe5c04d 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5268,8 +5268,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> |