diff options
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 17 | ||||
-rw-r--r-- | doc/src/sgml/ref/pg_dump.sgml | 8 |
2 files changed, 25 insertions, 0 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index a65839a6709..a1a1d58a436 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -9813,6 +9813,23 @@ SET XML OPTION { DOCUMENT | CONTENT }; </listitem> </varlistentry> + <varlistentry id="guc-restrict-nonsystem-relation-kind" xreflabel="restrict_nonsystem_relation_kind"> + <term><varname>restrict_nonsystem_relation_kind</varname> (<type>string</type>) + <indexterm> + <primary><varname>restrict_nonsystem_relation_kind</varname></primary> + <secondary>configuration parameter</secondary> + </indexterm> + </term> + <listitem> + <para> + This variable specifies relation kind to which access is restricted. + It contains a comma-separated list of relation kind. Currently, the + supported relation kinds are <literal>view</literal> and + <literal>foreign-table</literal>. + </para> + </listitem> + </varlistentry> + </variablelist> </sect2> <sect2 id="runtime-config-client-format"> diff --git a/doc/src/sgml/ref/pg_dump.sgml b/doc/src/sgml/ref/pg_dump.sgml index 1010d817f18..ffc29b04fb7 100644 --- a/doc/src/sgml/ref/pg_dump.sgml +++ b/doc/src/sgml/ref/pg_dump.sgml @@ -1003,6 +1003,14 @@ PostgreSQL documentation <note> <para> + Using wildcards in <option>--include-foreign-data</option> may result + in access to unexpected foreign servers. Also, to use this option securely, + make sure that the named server must have a trusted owner. + </para> + </note> + + <note> + <para> When <option>--include-foreign-data</option> is specified, <application>pg_dump</application> does not check that the foreign table is writable. Therefore, there is no guarantee that the |