From: Bruce Momjian Date: Thu, 3 Jun 1999 20:44:28 +0000 (+0000) Subject: SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=935829dae5d20bb3b4112bc8c18b02d188a1875f;p=users%2Fbernd%2Fpostgres.git SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; 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 { ' now. for Vadim --- diff --git a/doc/src/sgml/ref/set.sgml b/doc/src/sgml/ref/set.sgml index cf9fbf22fb..5a8ca84d09 100644 --- a/doc/src/sgml/ref/set.sgml +++ b/doc/src/sgml/ref/set.sgml @@ -534,7 +534,7 @@ SET TIME ZONE { 'timezone' | LOCAL - Sets the isolation level for transactions. + Sets the isolation level for the current transaction. @@ -543,7 +543,7 @@ SET TIME ZONE { 'timezone' | LOCAL - Sets the isolation level for transactions to + Sets the isolation level for the current transaction to 'SERIALIZABLE' or 'READ COMMITTED'. @@ -556,7 +556,7 @@ SET TIME ZONE { 'timezone' | LOCAL - Sets the isolation level for transactions to + Sets the isolation level for the current transaction to 'SERIALIZABLE' or 'COMMITTED'. diff --git a/src/man/set.l b/src/man/set.l index bbfa886abf..cb0629ba04 100644 --- a/src/man/set.l +++ b/src/man/set.l @@ -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 .