SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
authorBruce Momjian <bruce@momjian.us>
Thu, 3 Jun 1999 20:44:28 +0000 (20:44 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 3 Jun 1999 20:44:28 +0000 (20:44 +0000)
SET TRANSACTION ISOLATION LEVEL READ COMMITTED;
                                ^^^^ required

Also note that SET TRANSACTION ISOLATION LEVEL change
isolevel for _current_ transaction, in accordance with
standard, not for session (ALTER SESSION is used in Oracle,
but it's not implemented currently).

And I would don't mention SET XACTISOLEVEL TO ...
form at all.

Please update set.sgml - I failed to understand all these

SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">

now.

for Vadim

doc/src/sgml/ref/set.sgml
src/man/set.l

index cf9fbf22fb7ffc03539ee2f8664b30fc7de939bc..5a8ca84d098d2cb918d898e7f62518d86fd5501d 100644 (file)
@@ -534,7 +534,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
       </term>
       <listitem>
        <para>
-       Sets the isolation level for transactions.
+       Sets the isolation level for the current transaction.
        
        <variablelist>
         <varlistentry>
@@ -543,7 +543,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
          </term>
          <listitem>
           <para>
-               Sets the isolation level for transactions to
+               Sets the isolation level for the current transaction to
                'SERIALIZABLE' or 'READ COMMITTED'.
           </para>
          </listitem>
@@ -556,7 +556,7 @@ SET TIME ZONE { '<REPLACEABLE CLASS="PARAMETER">timezone</REPLACEABLE>' | LOCAL
          </term>
          <listitem>
           <para>
-               Sets the isolation level for transactions to
+               Sets the isolation level for the current transaction to
                'SERIALIZABLE' or 'COMMITTED'.
           </para>
          </listitem>
index bbfa886abf07d0bc26d7ef3dcf71a53adeb4f180..cb0629ba046d121335c0e7002666a2affba1568a 100644 (file)
@@ -82,7 +82,7 @@ The default is unlimited.
 sets your timezone.
 .PP
 .I TRANSACTION ISOLATION LEVEL
-sets the transaction isolation level to
+sets the current transaction's isolation level to
 .IR SERIALIZABLE
 or
 .IR READ COMMITTED .