From: Peter Eisentraut Date: Sat, 17 Nov 2012 23:08:13 +0000 (-0500) Subject: doc: Put pg_temp into documentation index X-Git-Tag: REL9_3_BETA1~708 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b6633ad6cf663c81b5e0bc0c40709bf9d8d0299;p=postgresql doc: Put pg_temp into documentation index Karl O. Pinc --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 88cea3df59..b56070b0fb 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4810,7 +4810,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; Likewise, the current session's temporary-table schema, pg_temp_nnn, is always searched if it exists. It can be explicitly listed in the path by using the - alias pg_temp. If it is not listed in the path then + alias pg_temppg_temp. If it is not listed in the path then it is searched first (even before pg_catalog). However, the temporary schema is only searched for relation (table, view, sequence, etc) and data type names. It is never searched for diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 4336e4b218..fee6f53ba2 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -684,7 +684,7 @@ SELECT * FROM dup(42); temporary-table schema, which is searched first by default, and is normally writable by anyone. A secure arrangement can be had by forcing the temporary schema to be searched last. To do this, - write pg_temp as the last entry in search_path. + write pg_temppg_tempsecuring functions as the last entry in search_path. This function illustrates safe usage: