Re: 8.1, OID's and plpgsql - Mailing list pgsql-general

From Jim C. Nasby
Subject Re: 8.1, OID's and plpgsql
Date
Msg-id 20051203022808.GZ13642@nasby.net
Whole thread Raw
In response to Re: 8.1, OID's and plpgsql  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On Fri, Dec 02, 2005 at 06:58:39PM -0500, Tom Lane wrote:
> "Jim C. Nasby" <jim@nasby.net> writes:
> > Maybe the docs should be changed to just say that you should never reuse
> > a ctid outside of the transaction you obtained the ctid in?
>
> That's not a sufficient rule either: someone else could still delete or
> update the row while your transaction runs.  You'd really have to SELECT
> FOR UPDATE or FOR SHARE to be sure the ctid remains stable.  (Of course,

Erm, even if they do delete or update the row, wouldn't it's ctid still
remain valid since nothing could vacuum it yet? Of course, now it'd
probably see the old version of the row, but that behavior could be
changed so that the database would follow t_ctid in that case.
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461

pgsql-general by date:

Previous
From: "Jim C. Nasby"
Date:
Subject: Re: 8.1, OID's and plpgsql
Next
From: Tony Caduto
Date:
Subject: Re: was a initdb required from 8.1beta3 -> beta4?