Help with RULE - Mailing list pgsql-sql

From Otakar Kleps
Subject Help with RULE
Date
Msg-id 3BF0D9CA.7050807@avonet.cz
Whole thread Raw
Responses Re: Help with RULE  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-sql
On Postgres 7.1.3(SUSE Linux 7.0 - 2.2.16) I have this problem:

I have table, for example:

CREATE TABLE tbl_test(
id INTEGERE PRIMARY KEY,
...
_parent INTEGER REFERENCES tbl_test ON DELETE CASCADE,
...
)

Next, I create rule for table tbl_test on event ON DELETE:
CREATE RULE rule_test AS ON DELETE TO tbl_test DO INSERT INTO ...;

Why RULE doesn't DELETE recursive(for a consideration REFERANCES)!?

Please HELP ME!

Thank you

-- 
Otakar KLEPS               AVONET, s.r.o.
-----------------------------------------
tel./fax:  067/7217797
e-mail:    kleps@avonet.cz
http://www.avonet.cz   http://www.zlin.cz



pgsql-sql by date:

Previous
From: "Wilco Boschman"
Date:
Subject: Re: INSERT question
Next
From: "Jack Gao"
Date:
Subject: Re: Is this a bug?