From 5016b69cf1302b941ee3a0c5daa66fd1e920e091 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 29 Jun 2010 22:23:02 +0000 Subject: [PATCH] Document that shared_preload_libraries and local_preload_libraries lowercase the library names, unless double-quoted. --- doc/src/sgml/config.sgml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 7860e1fa07..e7b9c107f4 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ - + Server Configuration @@ -1015,6 +1015,7 @@ SET ENABLE_SEQSCAN TO OFF; mylib.so (or on some platforms, mylib.sl) to be preloaded from the installation's standard library directory. + All library names are converted to lowercase unless double-quoted. If more than one library is to be loaded, separate their names with commas. This parameter can only be set at server start. @@ -4838,7 +4839,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' This variable specifies one or more shared libraries that are to be preloaded at connection start. If more than one library - is to be loaded, separate their names with commas. + is to be loaded, separate their names with commas. All library + names are converted to lowercase unless double-quoted. This parameter cannot be changed after the start of a particular session.