Re: How to access OLD and NEW with rule on update

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: How to access OLD and NEW with rule on update
Дата
Msg-id 18513.1038533335@sss.pgh.pa.us
обсуждение исходный текст
Ответ на How to access OLD and NEW with rule on update  ("Han Holl" <han.holl@prismant.nl>)
Список pgsql-general
"Han Holl" <han.holl@prismant.nl> writes:
> I need to call a function when updating on a view, like :

> create rule udps_upd as on update to udps do
>   instead select function_call();

> My problem: how do I get a reference to OLD and NEW ?

> I tried function_call(OLD, NEW)  -- parse error

I think you'll need to do it as

    function_call(old.col1, old.col2, ..., new.col1, new.col2, ...)

Pretty tedious :-( but the rule rewriter doesn't support whole-row
references to OLD or NEW.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Server v7.3RC2 Dies
Следующее
От: Justin Clift
Дата:
Сообщение: Re: PostgreSQL Global Development Group Announces Version 7.3