Re: [HACKERS] Savepoints...

From: Vadim Mikheev <vadim(at)krs(dot)ru>
To: Hiroshi Inoue <Inoue(at)tpf(dot)co(dot)jp>
Cc: PostgreSQL Developers List <hackers(at)postgreSQL(dot)org>
Subject: Re: [HACKERS] Savepoints...
Date: 1999-06-17 03:58:02
Message-ID: 3768724A.7063D4B1@krs.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hiroshi Inoue 1999-06-17 04:12:34 RE: [HACKERS] Savepoints...
Previous Message Hiroshi Inoue 1999-06-17 03:20:31 RE: [HACKERS] Savepoints...