diff options
Diffstat (limited to 'doc/src/sgml/ref/set_session_auth.sgml')
-rw-r--r-- | doc/src/sgml/ref/set_session_auth.sgml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/set_session_auth.sgml b/doc/src/sgml/ref/set_session_auth.sgml index 7cd0d7d1ec7..dfb20357005 100644 --- a/doc/src/sgml/ref/set_session_auth.sgml +++ b/doc/src/sgml/ref/set_session_auth.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_session_auth.sgml,v 1.5 2002/05/06 19:47:30 tgl Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_session_auth.sgml,v 1.6 2002/05/17 01:19:16 tgl Exp $ --> <refentry id="SQL-SET-SESSION-AUTHORIZATION"> <docinfo> <date>2001-04-21</date> @@ -16,8 +16,8 @@ <refsynopsisdiv> <synopsis> -SET SESSION AUTHORIZATION <parameter>username</parameter> -SET SESSION AUTHORIZATION DEFAULT +SET [ SESSION | LOCAL ] SESSION AUTHORIZATION <parameter>username</parameter> +SET [ SESSION | LOCAL ] SESSION AUTHORIZATION DEFAULT RESET SESSION AUTHORIZATION </synopsis> </refsynopsisdiv> @@ -52,6 +52,12 @@ RESET SESSION AUTHORIZATION </para> <para> + The <option>SESSION</> and <option>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 name. These forms are always accepted. |