]> granicus.if.org Git - postgresql/commitdiff
Doc: fix ancient mistake in search_path documentation.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Dec 2018 18:55:11 +0000 (13:55 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 20 Dec 2018 18:55:11 +0000 (13:55 -0500)
"$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

doc/src/sgml/config.sgml

index cb529ae83439134da9537d38d35e46d165146e5b..79bd64dccd54c7c15e15eb1cb1b912e0fef36630 100644 (file)
@@ -6464,7 +6464,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</function> is substituted, if there is such a schema
+        <function>CURRENT_USER</function> is substituted, if there is such a schema
         and the user has <literal>USAGE</literal> permission for it.
         (If not, <literal>$user</literal> is ignored.)
        </para>