Re: rules and default values

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: rules and default values
Дата
Msg-id 3977.1017534361@sss.pgh.pa.us
обсуждение исходный текст
Ответ на rules and default values  (nconway@klamath.dyndns.org (Neil Conway))
Ответы Re: rules and default values  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
nconway@klamath.dyndns.org (Neil Conway) writes:
> In other words, when the insert statement on the view is transformed by
> the rule, the "default value" columns are replaced by explicit NULL
> values (which is the default value for the columns of the pseudo-table
> created by CREATE VIEW). Is this the correct behavior?

It's correct, from the point of view of the rule rewriter, but that
doesn't make the behavior useful.

What'd make sense to me is to allow defaults to be attached to the
view columns, say by doing ALTER TABLE ADD DEFAULT on the view.
Unfortunately that won't do much in the current implementation,
because such defaults will never get applied (the planner certainly
won't see them as applicable).

Maybe inserting defaults should be the first phase of rewriting, just
before rule substitution, rather than being left to the planner as it
is now.  We took it out of the parser for good reasons, but perhaps
we moved it too far downstream.
        regards, tom lane


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

Предыдущее
От: nconway@klamath.dyndns.org (Neil Conway)
Дата:
Сообщение: rules and default values
Следующее
От: nconway@klamath.dyndns.org (Neil Conway)
Дата:
Сообщение: Re: compile bug in HEAD?