summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2017-05-06 18:19:47 +0000
committerTom Lane2017-05-06 18:20:06 +0000
commitbabf8f1c3825fdcd416caa90e51af360a613ea32 (patch)
tree9300716d1218445eb940a575bf85edf2a91669c9
parentf692583ddbe147e0071654c5e3786bb3bb646249 (diff)
Document current_role.
This system function has been there a very long time, but somehow escaped being listed in func.sgml. Fabien Coelho and Tom Lane Discussion: https://postgr.es/m/alpine.DEB.2.20.1705061027580.3896@lancre
-rw-r--r--doc/src/sgml/func.sgml22
1 files changed, 20 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index 02dcd064374..2e7e2e2b251 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -13441,6 +13441,12 @@ postgres=# SELECT * FROM unnest2(ARRAY[[1,2],[3,4]]);
</row>
<row>
+ <entry><literal><function>current_role</function></literal></entry>
+ <entry><type>name</type></entry>
+ <entry>equivalent to <function>current_user</function></entry>
+ </row>
+
+ <row>
<entry><literal><function>current_schema</function>[()]</literal></entry>
<entry><type>name</type></entry>
<entry>name of current schema</entry>
@@ -13551,8 +13557,11 @@ postgres=# SELECT * FROM unnest2(ARRAY[[1,2],[3,4]]);
<note>
<para>
- <function>current_catalog</function>, <function>current_schema</function>,
- <function>current_user</function>, <function>session_user</function>,
+ <function>current_catalog</function>,
+ <function>current_role</function>,
+ <function>current_schema</function>,
+ <function>current_user</function>,
+ <function>session_user</function>,
and <function>user</function> have special syntactic status
in <acronym>SQL</acronym>: they must be called without trailing
parentheses. (In PostgreSQL, parentheses can optionally be used with
@@ -13573,6 +13582,10 @@ postgres=# SELECT * FROM unnest2(ARRAY[[1,2],[3,4]]);
</indexterm>
<indexterm>
+ <primary>current_role</primary>
+ </indexterm>
+
+ <indexterm>
<primary>current_schema</primary>
</indexterm>
@@ -13623,6 +13636,11 @@ postgres=# SELECT * FROM unnest2(ARRAY[[1,2],[3,4]]);
functions with the attribute <literal>SECURITY DEFINER</literal>.
In Unix parlance, the session user is the <quote>real user</quote> and
the current user is the <quote>effective user</quote>.
+ <function>current_role</function> and <function>user</function> are
+ synonyms for <function>current_user</function>. (The SQL standard draws
+ a distinction between <function>current_role</function>
+ and <function>current_user</function>, but <productname>PostgreSQL</>
+ does not, since it unifies users and roles into a single kind of entity.)
</para>
<para>