Compatibility Issue of CREATE RULE in 7.2

From: Bhuvan A <bhuvansql(at)yahoo(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Compatibility Issue of CREATE RULE in 7.2
Date: 2002-05-22 12:16:59
Message-ID: Pine.LNX.4.20.0205221742400.31195-100000@Larry
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

hi,

Recently, i have migrated from 7.1.2 to 7.2. Here found a problem in
7.2 while using RULEs.

In 7.1.2, action of the rules get executed BEFORE for all the events.
But in 7.2, action get executed BEFORE for INSERT alone and AFTER for
all other events.

In 7.1.2,

bhuvan=# CREATE TABLE rule_test (key text, value text);
CREATE
bhuvan=# CREATE RULE rule_test_rule AS ON insert TO rule_test do
delete from rule_test where key = new.key;
CREATE
bhuvan=# INSERT INTO rule_test values ('key', 'oldvalue');
INSERT 22317402 1
bhuvan=# SELECT * from rule_test ;
key | value
-----+----------
key | oldvalue
(1 row)

bhuvan=# INSERT INTO rule_test values ('key', 'newvalue');
INSERT 22317403 1
bhuvan=# SELECT * from rule_test ;
key | value
-----+----------
key | newvalue
(1 row)

bhuvan=#

// since the rule has been executed BEFORE INSERT

But in 7.2,

// the same results in deleting 2 records :)
// since the rule gets executed AFTER INSERT.

So would like to know an alternate way to fix this problem. Since i
wont like checking for existence of the key and do insert or update
accordingly, everytime from my code.

Hope there would be some lights on to solve this problem.

regards,
bhuvaneswaran.

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Bhuvan A 2002-05-22 12:24:53 Compatibility Issue of CREATE RULE in 7.2
Previous Message Gabriel Dovalo Carril 2002-05-22 11:17:53 Re: Turning column into row