diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-12-20 13:55:11 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-12-20 13:55:11 -0500 |
commit | dae1db34f5e6bfbb86210a30b050110c08f62ba1 (patch) | |
tree | a6e91962d0149163e36f8990674590edee0acf78 /doc/src | |
parent | 72a626e688ffedbdcc8d8073ac936db2f658ebb6 (diff) | |
download | postgresql-dae1db34f5e6bfbb86210a30b050110c08f62ba1.tar.gz postgresql-dae1db34f5e6bfbb86210a30b050110c08f62ba1.zip |
Doc: fix ancient mistake in search_path documentation.
"$user" in a search_path string is replaced by CURRENT_USER not
SESSION_USER. (It actually was SESSION_USER in the initial implementation,
but we changed it shortly later, and evidently forgot to fix the docs to
match.)
Noted by antonov@stdpr.ru
Discussion: https://postgr.es/m/159151fb45d490c8d31ea9707e9ba99d@stdpr.ru
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/config.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index f670ecc0439..fb0df416590 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5503,7 +5503,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; <para> If one of the list items is the special name <literal>$user</literal>, then the schema having the name returned by - <function>SESSION_USER</> is substituted, if there is such a schema + <function>CURRENT_USER</> is substituted, if there is such a schema and the user has <literal>USAGE</> permission for it. (If not, <literal>$user</literal> is ignored.) </para> |