Re: CREATE RULE ignored, what did I do wrong

From: andrew(at)pillette(dot)com
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: andrew(at)pillette(dot)com, pgsql-sql(at)postgresql(dot)org
Subject: Re: CREATE RULE ignored, what did I do wrong
Date: 2004-09-13 18:13:08
Message-ID: 200409131813.i8DID8Y10812@pillette.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I was trying to implement a pseudo-delete, where the (millions of) records in several child tables were actually deleted, but a flag was set in the summary table instead of deleting it, as an archiving mechanism. (If the flag was already set, the WHERE clause in the RULE should be false, and the delete happen as usual?!) The FK relation below has the summary table as the child, and isn't critical. It's the tables for which this is the parent that are the issue.

Do you have an idea how to implement this best?

Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote ..
> andrew(at)pillette(dot)com writes:
> > Foreign-key constraints:
> > "$1" FOREIGN KEY (smoothing_id) REFERENCES smoothing_algorithm(smoothing_id)
> ON UPDATE CASCADE ON DELETE CASCADE
> > Rules:
> > del_smoothed_rank_episode AS ON DELETE TO smoothed_rank_episode
> > WHERE (NOT old.is_deleted) DO INSTEAD ...
>
> The DELETE commands generated by the foreign key ON DELETE CASCADE will
> get rewritten by your ON DELETE rule. You probably do not want to do
> this; or at least not make it an INSTEAD rule.
>
> There has been some debate in the past about whether rules should be
> able to break foreign-key constraints, but I tend to class it as a
> "you should know what you're doing" feature. Preventing this kind
> of error would inevitably result in a serious reduction of the power
> of the rule feature.
>
> regards, tom lane

Browse pgsql-sql by date

  From Date Subject
Next Message Alvaro Nunes Melo 2004-09-13 22:03:03 Difficulties to use a Set Returning Function on a join
Previous Message Tom Lane 2004-09-13 15:16:33 Re: Interpolation and extrapolation in SQL