diff options
Diffstat (limited to 'doc/src/sgml/config.sgml')
| -rw-r--r-- | doc/src/sgml/config.sgml | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 1fb32c8de3..8045f5c95b 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.236 2009/12/10 06:32:27 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.237 2009/12/11 03:34:55 itagaki Exp $ --> <chapter Id="runtime-config"> <title>Server Configuration</title> @@ -4816,6 +4816,35 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </listitem> </varlistentry> + <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> + </indexterm> + <listitem> + <para> + This allows us to tuen on/off database privilege checks on large + objects. In the 8.4.x series and earlier release do not have + privilege checks on large object in most cases. + + So, turning the <varname>lo_compat_privileges</varname> off means + the large object feature performs in compatible mode. + </para> + <para> + Please note that it is not equivalent to disable all the security + checks corresponding to large objects. + For example, the <literal>lo_import()</literal> and + <literal>lo_export()</literal> need superuser privileges independent + from this setting as prior versions were doing. + </para> + <para> + It is <literal>off</literal> by default. + </para> + </listitem> + </varlistentry> + <varlistentry id="guc-sql-inheritance" xreflabel="sql_inheritance"> <term><varname>sql_inheritance</varname> (<type>boolean</type>)</term> <indexterm> |
