Re: Rule ON DELETE, to perform to DELETE querys ! - Mailing list pgsql-admin

From Luis Sousa
Subject Re: Rule ON DELETE, to perform to DELETE querys !
Date
Msg-id 3B20EFC1.18C29C72@ualg.pt
Whole thread Raw
In response to Rule ON DELETE, to perform to DELETE querys !  (Luis Sousa <llsousa@ualg.pt>)
List pgsql-admin
Sorry, but it wasn't this list that i wanted to send this post !!

I already send it to pgsql-sql@postgresql.org !!

Luis Sousa wrote:

> I have a view over a join of tables and when it's performed over the
> view a delete i want to delete records in two different tables. The code
> that i wrote was:
>
>     CREATE RULE "deletetables" AS ON DELETE TO "tables"
>          DO INSTEAD (
>          DELETE FROM table2
>                 WHERE id = OLD.id;
>          DELETE FROM table1
>                 WHERE id=OLD.id
>            );
>
> table2 references table1 by the field id only for update. I don't them
> to be referenced by delete !
>
> When i execute: DELETE FROM tables WHERE id=1; i got these message from
> postgres:
>
> pqReadData() -- backend closed the channel unexpectedly.
>         This probably means the backend terminated abnormally
>         before or while processing the request.
> The connection to the server was lost. Attempting reset: Failed.
>
> The records exists in both tables !!!!!!!
>
> This already happen with some of you ???? How can i do this ????
>
> Thanks
>
> Luis Sousa
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster


pgsql-admin by date:

Previous
From: Luis Sousa
Date:
Subject: Rule ON DELETE, to perform to DELETE querys !
Next
From: Tom Lane
Date:
Subject: Re: Rule ON DELETE, to perform to DELETE querys !