From: Peter Eisentraut Date: Sun, 14 Sep 2014 14:50:04 +0000 (-0400) Subject: doc: Fix documentation of local_preload_libraries X-Git-Tag: REL9_0_19~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc4314a237d71a5a02e7907037e0e1b9c5b02157;p=thirdparty%2Fpostgresql.git 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 --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 2843d144571..94465330af1 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4981,8 +4981,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 LOAD command being given. For example, debugging could - be enabled for all sessions under a given user name by setting - this parameter with ALTER USER SET. + be enabled for a session by setting this parameter via the + PGOPTIONS environment variable.