Re: on delete rules on a view problem

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: "Rose, Juergen" <Juergen(dot)Rose(at)sag-el(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: on delete rules on a view problem
Date: 2005-07-20 17:12:32
Message-ID: 20050720171232.GA1540@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Wed, Jul 20, 2005 at 16:49:26 +0200,
"Rose, Juergen" <Juergen(dot)Rose(at)sag-el(dot)com> wrote:
> Hi all,
>
> I'am a bit puzzled. I have a view and some delete rules defined on it. Now my problem is, only one gets executed (the first one) and the other ones seem not to be executed at all. I use a subselect within those rules (which works fine for the first one by the way) and I wonder if this could be a problem? Are there any caveats? Is it important which of theses rules is the do instead rule?
>
> Are there any things to be considered with using delete rules? I don't find any exhaustive documentation on the internet (except pg manual), so any pointers will be appreciated.

I have seen similar reports in the past. In tht case the problem was that after
rows were removed from one table, the corresponding rows from the other table
could not be found because they were selected using a join and the rows
they were supposed to match up with were gone now.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alejandro D. Burne 2005-07-20 18:00:42 Trigger problem
Previous Message Jim C. Nasby 2005-07-20 16:12:19 Re: Slow Inserts on 1 table?