Re: BUG #10315: Transactions seem to be releasing locks early?

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: BUG #10315: Transactions seem to be releasing locks early?
Дата
Msg-id CAB7nPqRa+Xwy-kMmeNEyYiEc1aCNRSLv=kmufkOcSCZBcE1pPQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: BUG #10315: Transactions seem to be releasing locks early?  (Greg Stark <stark@mit.edu>)
Ответы Re: BUG #10315: Transactions seem to be releasing locks early?
Список pgsql-bugs
On Wed, May 14, 2014 at 12:21 PM, Greg Stark <stark@mit.edu> wrote:
> On Tue, May 13, 2014 at 9:51 PM,  <tim.channell@gmail.com> wrote:
>> 7. Back in the second transaction, our DELETE has executed because the lock
>> was released. It would be expected to show "DELETE 1", because the first
>> transaction re-inserted the deleted record. But, it shows DELETE 0.
>
> It can't see the second row because it was inserted after the delete
> query started.
>
> I think in SERIALIZABLE mode it would be flagged as a serialization
> failure but I'm not sure.
Yep because session 1 has done a concurrent update on the row session
2 is trying to delete. You would actually get something like that:
=# DELETE FROM test WHERE id = 2;
ERROR:  40001: could not serialize access due to concurrent update
LOCATION:  ExecDelete, nodeModifyTable.c:447
--
Michael

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

Предыдущее
От: Greg Stark
Дата:
Сообщение: Re: BUG #10315: Transactions seem to be releasing locks early?
Следующее
От: parthibanp2@gmail.com
Дата:
Сообщение: BUG #10316: Alter table rename fails if the "new name" starts with '_'