Re: [HACKERS] Savepoints...

Поиск
Список
Период
Сортировка
От Vadim Mikheev
Тема Re: [HACKERS] Savepoints...
Дата
Msg-id 3768724A.7063D4B1@krs.ru
обсуждение исходный текст
Ответ на RE: [HACKERS] Savepoints...  ("Hiroshi Inoue" <Inoue@tpf.co.jp>)
Ответы RE: [HACKERS] Savepoints...  ("Hiroshi Inoue" <Inoue@tpf.co.jp>)
Список pgsql-hackers
Hiroshi Inoue wrote:
> 
> > - lmgr will remember command id when lock was acquired;
> 
> Does this mean that many writing commands in a transaction
> require many command id-s to remember ?

Did you mean such cases:

begin;
...
update t set...;
...
update t set...;
...
end;

?

We'll remember command id for the first "update t" only
(i.e. for the first ROW EXCLUSIVE mode lock over table t).

Vadim


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

Предыдущее
От: "Hiroshi Inoue"
Дата:
Сообщение: RE: [HACKERS] Savepoints...
Следующее
От: "Hiroshi Inoue"
Дата:
Сообщение: RE: [HACKERS] Savepoints...