Re: Is drop/restore trigger transactional? - Mailing list pgsql-performance

From Craig Ringer
Subject Re: Is drop/restore trigger transactional?
Date
Msg-id 5021B2CE.9040706@ringerc.id.au
Whole thread Raw
In response to Re: Is drop/restore trigger transactional?  (Merlin Moncure <mmoncure@gmail.com>)
Responses Re: Is drop/restore trigger transactional?
List pgsql-performance
On 08/08/2012 04:15 AM, Merlin Moncure wrote:
> IF current_user = 'bulk_writer' THEN
>    return new;
> END IF;
> <expensive stuff>
... or re-create the trigger with a `WHEN` clause (only available in
newer Pg versions, see CREATE TRIGGER) that excludes the migrated
customer ID. You'd have to do it in a new tx to avoid locking the table
for ages though.

--
Craig Ringer

pgsql-performance by date:

Previous
From: Stefan Keller
Date:
Subject: Re: Slow query: Select all buildings that have >1 pharmacies and >1 schools within 1000m
Next
From: Merlin Moncure
Date:
Subject: Re: Is drop/restore trigger transactional?