Re: How to get a self-conflicting row level lock?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to get a self-conflicting row level lock?
Дата
Msg-id 23719.963031217@sss.pgh.pa.us
обсуждение исходный текст
Ответ на How to get a self-conflicting row level lock?  (Forest Wilkinson <fspam@home.com>)
Список pgsql-sql
Forest Wilkinson <fspam@home.com> writes:
> I'm worried about concurrent process synchronization.  According to the
> PostgreSQL docs on the LOCK command, SELECT ... FOR UPDATE acquires a "ROW
> SHARE MODE" lock, which is not self-conflicting.

That doc is only telling part of the story, I guess.  ROW SHARE MODE
lock on a *table* is not self-conflicting, and should not be, because
you want two different transactions to be able to acquire FOR UPDATE
locks on different rows of the table concurrently.  But SELECT FOR
UPDATE also acquires a *per-tuple* lock on each selected row, and
that lock will prevent another transaction from acquiring a FOR UPDATE
lock on the same row(s).  Try it and see.

The reason SELECT FOR UPDATE acquires a table-wide lock at all is
just to prevent table-wide conflicts, such as someone else trying
to do a VACUUM or DROP TABLE on that table.  I suspect that it
doesn't really need to get a different kind of table lock than an
UPDATE gets, but haven't thought about the details.
        regards, tom lane


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

Предыдущее
От: Forest Wilkinson
Дата:
Сообщение: How to get a self-conflicting row level lock?
Следующее
От: andrew
Дата:
Сообщение: m4 macros plus PostgreSQL anyone?