Re: insert rule doesn't see id field

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: insert rule doesn't see id field
Дата
Msg-id 13558.1041955268@sss.pgh.pa.us
обсуждение исходный текст
Ответ на insert rule doesn't see id field  (Ron Peterson <rpeterso@mtholyoke.edu>)
Ответы Re: insert rule doesn't see id field
Re: insert rule doesn't see id field
Список pgsql-sql
Ron Peterson <rpeterso@mtholyoke.edu> writes:
> CREATE RULE person_insert AS
> ON INSERT TO person
> DO
>     INSERT INTO person_log ( name_last, name_first, mod_type, person_id )
>     VALUES ( new.name_last, new.name_first, 'I', new.id );
> [where id is a serial column]

> My insert rule creates a record in person_log just fine.  It inserts
> values for all of the fields except person_id.  Why doesn't new.id
> contain a value?

This is a bug in 7.2.*.  It's fixed in 7.3.  However, your rule will
still not work the way you would like, because rules are macros: the
default expression for id will get evaluated once in the rule and once
in your original query, leading to two different sequence numbers
getting inserted.

The only way to make this example work is to issue the log insertion
from a trigger, not a rule.

> (Problem 2)

> I thought that the idea behind noup was to protect single columns from
> update.  However, when I apply the noup trigger as above, I can't
> update /any/ column.  Is this the intended behaviour?

Idly looking at the source code for contrib/noupdate/noup.c, I don't
believe that it has ever worked as advertised: it seems to reject any
non-null value for the target column, independently of whether the
value is the same as before (which is what I'd have thought it should
do).

Is anyone interested in fixing it?  Or should we just remove it?
If it's been there since 6.4 and you're the first person to try to use
it, as seems to be the case, then I'd have to say that it's a waste of
space in the distribution.
        regards, tom lane


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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: [PERFORM] 7.3.1 index use / performance
Следующее
От: "Peter Galbavy"
Дата:
Сообщение: Re: weighting (the results of) a query ?