Re: duplicates

Поиск
Список
Период
Сортировка
От Michael Paesold
Тема Re: duplicates
Дата
Msg-id 00be01c493ff$82814530$ad01a8c0@zaphod
обсуждение исходный текст
Ответ на duplicates  (Tsirkin Evgeny <tsurkin@mail.jct.ac.il>)
Ответы Re: duplicates
Список pgsql-admin
I wrote:

> BEGIN;
> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
>
> DELETE FROM schedule WHERE studentid = ... ;
> INSERT INTO schedule (studentid, ...) VALUES (... );
> INSERT INTO schedule (studentid, ...) VALUES (... );
>
> COMMIT;
>
> If you do it like in the above sql code, there is still a problem. The
> serializable checking here only works, if DELETE FROM schedule... really
> finds at least one row. If it does not, it will not recognize the
> serialization problem. So it's still possible that your programm creates
> duplicates.
>
> I have tested this here. I don't really know if this is just the case with
> PostgreSQL serializable transactions (MVCC limitation) or a general
problem.

There is a detailed description about this problem in Section 12.2.2.1. of
the PostgreSQL 8 docs here:
http://developer.postgresql.org/docs/postgres/transaction-iso.html

(Serializable Isolation versus True Serializability)

Best Regards,
Michael Paesold


В списке pgsql-admin по дате отправления:

Предыдущее
От: "Michael Paesold"
Дата:
Сообщение: Re: duplicates
Следующее
От: Tsirkin Evgeny
Дата:
Сообщение: Re: duplicates