Re: Help with trigger that updates a row prior to a potentially aborted deletion? - Mailing list pgsql-sql

From Andrew Sullivan
Subject Re: Help with trigger that updates a row prior to a potentially aborted deletion?
Date
Msg-id 20060301182345.GJ17356@phlogiston.dyndns.org
Whole thread Raw
In response to Help with trigger that updates a row prior to a potentially aborted deletion?  ("Simon Kinsella" <simon@bluefiresystems.co.uk>)
Responses Re: Help with trigger that updates a row prior to a potentially aborted deletion?
List pgsql-sql
On Wed, Mar 01, 2006 at 01:30:23PM -0000, Simon Kinsella wrote:
> I'm trying to achieve this with a BEFORE DELETE trigger, which would set the
> 'marked_for_deletion' field to TRUE before attempting the delete proper.
> Then if the DELETE fails the row would still be tagged and I'd be happy.
> Problem is, when the DELETE operation fails with a RESTRICT VIOLATION error
> the entire operation is rolled back, including the BEFORE triggers, leaving
> me back where I started.

Yes.  In 8.1, you could use a subtransaction for the DELETE, which I
think would allow you to rollback at that point and still leave the
UPDATE in place.

A


-- 
Andrew Sullivan  | ajs@crankycanuck.ca
The fact that technology doesn't work is no bar to success in the marketplace.    --Philip Greenspun


pgsql-sql by date:

Previous
From: Bryce Nesbitt
Date:
Subject: Replication - state of the art?
Next
From: Andrew Sullivan
Date:
Subject: Re: Replication - state of the art?