From a45475a7cb793c954c53d28f4ffa6e4116d172bb Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Mon, 8 Feb 2016 20:04:03 +0900 Subject: [PATCH] =?UTF-8?q?postgres-fdw.sgml=E3=81=AB=E3=81=82=E3=81=A3?= =?UTF-8?q?=E3=81=9F=E3=80=81=E3=82=B3=E3=83=94=E3=83=9A=E3=83=9F=E3=82=B9?= =?UTF-8?q?=E3=81=A8=E6=80=9D=E3=82=8F=E3=82=8C=E3=82=8B=E9=87=8D=E8=A4=87?= =?UTF-8?q?=E3=81=97=E3=81=9F=E8=8B=B1=E6=96=87=E3=82=92=E5=89=8A=E9=99=A4?= =?UTF-8?q?=E3=81=97=E3=81=BE=E3=81=97=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/src/sgml/postgres-fdw.sgml | 36 ---------------------------------- 1 file changed, 36 deletions(-) diff --git a/doc/src/sgml/postgres-fdw.sgml b/doc/src/sgml/postgres-fdw.sgml index 56f9ae4b24b..c57844533f1 100644 --- a/doc/src/sgml/postgres-fdw.sgml +++ b/doc/src/sgml/postgres-fdw.sgml @@ -696,42 +696,6 @@ - - - Remote Query Execution Environment - - - In the remote sessions opened by postgres_fdw, - the parameter is set to - just pg_catalog, so that only built-in objects are visible - without schema qualification. This is not an issue for queries - generated by postgres_fdw itself, because it always - supplies such qualification. However, this can pose a hazard for - functions that are executed on the remote server via triggers or rules - on remote tables. For example, if a remote table is actually a view, - any functions used in that view will be executed with the restricted - search path. It is recommended to schema-qualify all names in such - functions, or else attach SET search_path options - (see ) to such functions - to establish their expected search path environment. - - - - postgres_fdw likewise establishes remote session settings - for the parameters , - , , - and . These are less likely - to be problematic than search_path, but can be handled - with function SET options if the need arises. - - - - It is not recommended that you override this behavior by - changing the session-level settings of these parameters; that is likely - to cause postgres_fdw to malfunction. - - -