diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-05 21:18:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-08-05 21:18:11 -0400 |
commit | 34e2ef661b47140594feb4718893b42fc6fc1771 (patch) | |
tree | d6893712e2ce2edf9a9421743cd2e0f7bf77858c | |
parent | 20b6578bdb4fe40eee7a01674eb077ffdb19d874 (diff) |
Fix thinko in documentation of local_preload_libraries.
Somebody added a cross-reference to shared_preload_libraries, but wrote the
wrong variable name when they did it (and didn't bother to make it a link
either).
Spotted by Christoph Anton Mitterer.
-rw-r--r-- | doc/src/sgml/config.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 677aea07b29..eed4e54c5f1 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5231,7 +5231,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </para> <para> - Unlike <varname>local_preload_libraries</>, there is no + Unlike <xref linkend="guc-shared-preload-libraries">, there is no performance advantage to loading a library at session start rather than when it is first used. Rather, the intent of this feature is to allow debugging or performance-measurement |