Re: Inconsistence in transaction isolation docs

From: "Trevor Talbot" <quension(at)gmail(dot)com>
To: "Nico Sabbi" <nsabbi(at)officinedigitali(dot)it>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Inconsistence in transaction isolation docs
Date: 2007-10-16 12:08:16
Message-ID: 90bce5730710160508me5d9d20yee292333910ca1ef@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 10/16/07, Nico Sabbi <nsabbi(at)officinedigitali(dot)it> wrote:
> /From:
> http://www.postgresql.org/docs/8.2/interactive/transaction-iso.html
>
> "
> Read Committed/ is the default isolation level in PostgreSQL. When a
> transaction runs on this isolation level, a SELECT query sees only data
> committed before the query began; it never sees either uncommitted data
> or changes committed during query execution by concurrent transactions.
> (However, the SELECT does see the effects of previous updates executed
> within its own transaction, even though they are not yet committed.) In
> effect, a SELECT query sees a snapshot of the database as of the instant
> that that query begins to run. Notice that two successive SELECT
> commands can see different data, even though they are within a single
> transaction, if other transactions commit changes during execution of
> the first SELECT.
> "
>
> to me the above sentence sounds inconsistent: it's asserting that both
> 1) and 2) apply:
>
> 1) it never sees ... changes committed during query execution by
> concurrent transactions

During *query* execution. If you start a SELECT that runs through a
table from beginning to end, and while it is running some other
transaction quickly commits a row to the end, this SELECT will not see
it when it gets there.

> 2) Notice that two successive SELECT commands can see different data,
> even though they
> are within a single transaction, if other transactions commit changes
> during execution
> of the first SELECT

Within a single *transaction*. If you run the above SELECT again, it
will see the newly added row.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ron Johnson 2007-10-16 12:33:53 Re: Inconsistence in transaction isolation docs
Previous Message Peter Eisentraut 2007-10-16 11:57:35 Re: Inconsistence in transaction isolation docs