On Mon, Dec 06, 2004 at 05:11:21PM -0800, Eric Davies wrote:

> Is anyone aware of any hooks to support schemes such as ours, or has solved 
> a similar problem?

There's RegisterXactCallback() and RegisterSubXactCallback() functions
that may be what you want.  They are called whenever a transaction or
subtransaction starts, commits, or aborts.  You could probably keep a
list of things modified during the transaction, so you can clean up at
transaction end.

(Much like the storage manager does: it only unlinks files for dropped
tables at transaction commit.)

Make sure to react appropiately at subtransaction abort ...

-- 
Alvaro Herrera (<[EMAIL PROTECTED]>)
"Si quieres ser creativo, aprende el arte de perder el tiempo"

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faqs/FAQ.html

Reply via email to