AW: AW: TODO (was: Re: [HACKERS] Problem with parser)

Поиск
Список
Период
Сортировка
От Andreas Zeugswetter
Тема AW: AW: TODO (was: Re: [HACKERS] Problem with parser)
Дата
Msg-id 01BDD274.CDCF8310@zeugswettera.user.lan.at
обсуждение исходный текст
Список pgsql-hackers
>
> >> > * Allow views to specify column names outside SELECT statement
> >>
> >>     ??? what is meant by that?
> >
> >I have no idea.  I am removing it.  Does anyone else know what it means?
>
> It probably means:
> create view myview (name, salary, hours) as select lname, currsal, whours from wages;
>
> Andreas

    But that doesn't have to do anything with the rewrite system.
    It has to do with the view creation step on  setting  up  the
    instead rule for view selection. There the AS clauses have to
    be moved into the target list.  The  rewrite  system  doesn't
    know if this rule is something that builds up a view.

Yes, I think this is a parser issue.
It can be handled in the same way as the following syntax (only the above is the standard):
create view myview as select lname as name, currsal as salary, whours as hours from wages;

Andreas


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

Предыдущее
От: Tom Ivar Helbekkmo
Дата:
Сообщение: Re: [HACKERS] vacuum problem
Следующее
От: Andreas Zeugswetter
Дата:
Сообщение: long long int and printf format for int8.c