Re: simple trigger question ...

Поиск
Список
Период
Сортировка
От Marc G. Fournier
Тема Re: simple trigger question ...
Дата
Msg-id 20030403002922.Y71125@hub.org
обсуждение исходный текст
Ответ на Re: simple trigger question ...  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: simple trigger question ...  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
Okay, so I do have to create the FUNCTION first, I can't do it without?
Can a TRIGGER pass an arg to the FUNCTION?

On Wed, 2 Apr 2003, Tom Lane wrote:

> "Marc G. Fournier" <scrappy@hub.org> writes:
> >> Er ... you just want to bump the sequence and throw away the actual
> >> value?  You don't want to store the value somewhere?
>
> > Correct
>
> Then you need something like (untested)
>
> CREATE FUNCTION mytrig() RETURNS TRIGGER AS '
> begin
>   perform nextval(''seq'');
>   return new;
> end' LANGUAGE plpgsql;
>
>             regards, tom lane
>



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: simple trigger question ...
Следующее
От: Tom Lane
Дата:
Сообщение: Re: simple trigger question ...