Re: Trigger problem

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Trigger problem
Дата
Msg-id 20041204213432.D69922@megazone.bigpanda.com
обсуждение исходный текст
Ответ на Trigger problem  (Henry Molina <henrymolina@cmn-consulting.com>)
Список pgsql-general
On Sat, 4 Dec 2004, Henry Molina wrote:

> drop table t1;
> drop table t2;
> create table t1 (id integer);
> create table t2 (id integer);
> CREATE OR REPLACE FUNCTION myfunc() RETURNS trigger AS '
> BEGIN
>     insert into t2 values(NEW.id);
> END;
> ' LANGUAGE plpgsql;
>
> CREATE TRIGGER
>     mytri
>     AFTER INSERT ON t1 FOR EACH STATEMENT
>     EXECUTE PROCEDURE myfunc();
> insert into t1 values(1);

Currently statement triggers don't have any way to get at the affected
rowset. A FOR EACH ROW trigger should work for a case like the above,
although I think you'll need to add a return statement to the function as
well.


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

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Trigger problem
Следующее
От: "Guy Rouillier"
Дата:
Сообщение: Select distinct sorting all rows 8.0rc1