Re: inserting via "on insert" rule

Поиск
Список
Период
Сортировка
От Andreas Fromm
Тема Re: inserting via "on insert" rule
Дата
Msg-id 3F54AA21.5060302@physik.uni-erlangen.de
обсуждение исходный текст
Ответ на Re: inserting via "on insert" rule  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-general
Peter Eisentraut wrote:

>Andreas Fromm writes:
>
>
>
>>I was thinking of defining a view "users" over "persons" which would let
>>me retrive the list of useres. But How would I implement the rule for
>>insertiung users? I tryed the following but NEW is not known where I
>>want to use it:
>>
>>CREATE VIEW users AS
>>    SELECT * FROM persons WHERE is_user(person.id) = TRUE;
>>
>>CREATE RULE insert_on_users AS ON INSERT
>>    TO users DO INSTEAD
>>        INSERT INTO persons SELECT * FROM NEW;
>>
>>
>
>You can write
>
>... DO INSTEAD INSERT INTO persons VALUES (NEW.col1, NEW.col2, ...);
>
>
Yes, but what if I don't pass a certain col. Is the default value
inserted instead? Or will the transaction fail because of a wrong number
of columns?



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Commercial postgresql
Следующее
От: "Jenny -"
Дата:
Сообщение: granularity of locking