diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-05-20 20:32:27 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-05-20 20:32:27 +0000 |
commit | de98ef62c7fe7a2bf02fafab6a95ae2e138ed075 (patch) | |
tree | 06421fdbed94b25acd70651821b048b64a1103da | |
parent | ef01b235f830536cc8d38ed76a80fc182ef985f8 (diff) | |
download | postgresql-de98ef62c7fe7a2bf02fafab6a95ae2e138ed075.tar.gz postgresql-de98ef62c7fe7a2bf02fafab6a95ae2e138ed075.zip |
Fix index entry for lo_compat_privileges, per bug #5467 from KOIZUMI Satoru.
-rw-r--r-- | doc/src/sgml/config.sgml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 9b509b11e47..6fe27541cf2 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.277 2010/05/18 19:05:17 mha Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.278 2010/05/20 20:32:27 tgl Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -5107,9 +5107,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' <varlistentry id="guc-lo-compat-privileges" xreflabel="lo_compat_privileges"> <term><varname>lo_compat_privileges</varname> (<type>boolean</type>)</term> <indexterm> - <primary> - <varname>lo_compat_privileges</varname> configuration parameter - </primary> + <primary><varname>lo_compat_privileges</> configuration parameter</primary> </indexterm> <listitem> <para> @@ -5120,7 +5118,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' releases. The default is <literal>off</>. </para> <para> - Setting this variable does not disable all security checks for + Setting this variable does not disable all security checks related to large objects — only those for which the default behavior has changed in <productname>PostgreSQL</> 9.0. For example, <literal>lo_import()</literal> and |