Re: tuptoaster.c must *not* use SnapshotAny - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: tuptoaster.c must *not* use SnapshotAny
Date
Msg-id 200201180527.g0I5RAk19071@candle.pha.pa.us
Whole thread Raw
In response to tuptoaster.c must *not* use SnapshotAny  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Jan Wieck wrote:
> Bruce Momjian wrote:
> >
> > Agreed.  I think that was the reason we kept TOAST and large objects,
> > because large objects were designed for random read-write.  If we can
> > get large objects to auto-delete, probably with pg_depend, we can then
> > use them seamlessly with BLOB I/O routines.
> 
>     Not  entirely.  BLOB's  should  have  copy semantics, so that
>     doing
> 
>         INSERT INTO tab1 SELECT id, blob_column FROM tab2 ...
> 
>     and subsequently changing the blob in  either  tab1  or  tab2
>     does  NOT change the blob in the other table. Currently, even
>     if you make the pg_depend stuff smart enough to let the  blob
>     live  until  all  references  are  gone, the two tables would
>     share the same blob.  And that's not only  IMHO  wrong,  it's
>     also incompatible to Oracle :-)

Yes, we have to add duplication large object stuff hard-wired to that new data
type.

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
853-3000+  If your life is a hard drive,     |  830 Blythe Avenue +  Christ can be your backup.        |  Drexel Hill,
Pennsylvania19026
 


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: [PATCHES] guc
Next
From: Tom Lane
Date:
Subject: Re: age() function?