Re: WAL logging of heap_mark4update

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: WAL logging of heap_mark4update
Дата
Msg-id 19260.1105905701@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: WAL logging of heap_mark4update  (Heikki Linnakangas <hlinnaka@iki.fi>)
Список pgsql-hackers
Heikki Linnakangas <hlinnaka@iki.fi> writes:
> On Sat, 15 Jan 2005, Tom Lane wrote:
>> Right.  The 2PC connection is another reason to do it that way --- 2PC
>> would require some way to save locks anyhow, and it'd be nice if there
>> were only one mechanism to deal with not two.

> AFAICS, heap_mark4update calls XactLockTableWait for the updating 
> transaction, and XactLockTableWait uses LockAcquire to do the waiting.

Right, but the marking on the row is essential as well.  If we lost that
marker in a crash-and-restart after precommitting the transaction that
has locked the row, then another transaction could come along and think
that it can take ownership of the row, when in reality the precommitted
transaction should still be considered to have a lock on the row.  So
it's not enough to remember only the XactLockTableWait lock.

(BTW, I think that XactLockTableWait is *only* used for
heap_mark4update, so we could get rid of that too, thereby saving one
lock acquisition per transaction ...)
        regards, tom lane


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: WAL logging of heap_mark4update
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Much Ado About COUNT(*)