Compatibility Issue of CREATE RULE in 7.2

Поиск
Список
Период
Сортировка
От Bhuvan A
Тема Compatibility Issue of CREATE RULE in 7.2
Дата
Msg-id Pine.LNX.4.20.0205221742400.31195-100000@Larry
обсуждение исходный текст
Ответы Re: Compatibility Issue of CREATE RULE in 7.2  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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.



В списке pgsql-sql по дате отправления:

Предыдущее
От: "Tille, Andreas"
Дата:
Сообщение: Re: Turning column into row
Следующее
От: Christoph Haller
Дата:
Сообщение: Bug with ORDER BY expression [ ASC | DESC ] ?