postgresql/doc/src/sgml/ref/set_session_auth.sgml

119 lines
3.7 KiB
Plaintext
Raw Normal View History

2003-11-29 20:52:15 +01:00
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/set_session_auth.sgml,v 1.12 2003/11/29 19:51:39 pgsql Exp $ -->
2001-05-08 23:06:43 +02:00
<refentry id="SQL-SET-SESSION-AUTHORIZATION">
<refmeta>
<refentrytitle id="sql-set-session-authorization-title">SET SESSION AUTHORIZATION</refentrytitle>
2001-05-08 23:06:43 +02:00
<refmiscinfo>SQL - Language Statements</refmiscinfo>
</refmeta>
<refnamediv>
<refname>SET SESSION AUTHORIZATION</refname>
<refpurpose>set the session user identifier and the current user identifier of the current session</refpurpose>
2001-05-08 23:06:43 +02:00
</refnamediv>
2003-08-31 19:32:24 +02:00
<indexterm zone="sql-set-session-authorization">
<primary>SET SESSION AUTHORIZATION</primary>
</indexterm>
2001-05-08 23:06:43 +02:00
<refsynopsisdiv>
<synopsis>
2003-05-04 04:23:16 +02:00
SET [ SESSION | LOCAL ] SESSION AUTHORIZATION <replaceable class="parameter">username</replaceable>
SET [ SESSION | LOCAL ] SESSION AUTHORIZATION DEFAULT
RESET SESSION AUTHORIZATION
2001-05-08 23:06:43 +02:00
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Description</title>
<para>
This command sets the session user identifier and the current user
identifier of the current SQL-session context to be <replaceable
2003-05-04 04:23:16 +02:00
class="parameter">username</replaceable>. The user name may be
written as either an identifier or a string literal. Using this
command, it is possible, for example, to temporarily become an
unprivileged user and later switch back to become a superuser.
2001-05-08 23:06:43 +02:00
</para>
<para>
The session user identifier is initially set to be the (possibly
authenticated) user name provided by the client. The current user
identifier is normally equal to the session user identifier, but
may change temporarily in the context of <quote>setuid</quote>
2002-01-20 23:19:57 +01:00
functions and similar mechanisms. The current user identifier is
2001-05-08 23:06:43 +02:00
relevant for permission checking.
</para>
<para>
The session user identifier may be changed only if the initial session
2001-05-08 23:06:43 +02:00
user (the <firstterm>authenticated user</firstterm>) had the
superuser privilege. Otherwise, the command is accepted only if it
2002-09-21 20:32:54 +02:00
specifies the authenticated user name.
2001-05-08 23:06:43 +02:00
</para>
<para>
2003-05-04 04:23:16 +02:00
The <literal>SESSION</> and <literal>LOCAL</> modifiers act the same
as for the regular <xref linkend="SQL-SET" endterm="SQL-SET-title">
command.
</para>
<para>
The <literal>DEFAULT</> and <literal>RESET</> forms reset the session
and current user identifiers to be the originally authenticated user
2003-05-04 04:23:16 +02:00
name. These forms may be executed by any user.
</para>
2001-05-08 23:06:43 +02:00
</refsect1>
<refsect1>
<title>Examples</title>
<programlisting>
SELECT SESSION_USER, CURRENT_USER;
session_user | current_user
2001-05-08 23:06:43 +02:00
--------------+--------------
peter | peter
SET SESSION AUTHORIZATION 'paul';
SELECT SESSION_USER, CURRENT_USER;
2001-05-08 23:06:43 +02:00
session_user | current_user
2001-05-08 23:06:43 +02:00
--------------+--------------
paul | paul
</programlisting>
2001-05-08 23:06:43 +02:00
</refsect1>
<refsect1>
<title>Compatibility</title>
<para>
2003-05-04 04:23:16 +02:00
The SQL standard allows some other expressions to appear in place
of the literal <replaceable>username</replaceable> which are not
important in practice. <productname>PostgreSQL</productname>
2003-05-04 04:23:16 +02:00
allows identifier syntax (<literal>"username"</literal>), which SQL
does not. SQL does not allow this command during a transaction;
<productname>PostgreSQL</productname> does not make this
2003-05-04 04:23:16 +02:00
restriction because there is no reason to. The privileges
necessary to execute this command are left implementation-defined
by the standard.
2001-05-08 23:06:43 +02:00
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode:sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:("/usr/lib/sgml/catalog")
sgml-local-ecat-files:nil
End:
-->