Обсуждение: AW: TODO (was: Re: [HACKERS] Problem with parser)

Поиск
Список
Период
Сортировка

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

От
Andreas Zeugswetter
Дата:
>> > * 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



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

От
Bruce Momjian
Дата:
> >> > * 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;

Added to TODO:

    * CREATE VIEW myview (name) AS SELECT lname FROM wages fails


--
Bruce Momjian                          |  830 Blythe Avenue
maillist@candle.pha.pa.us              |  Drexel Hill, Pennsylvania 19026
  +  If your life is a hard drive,     |  (610) 353-9879(w)
  +  Christ can be your backup.        |  (610) 853-3000(h)

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

От
jwieck@debis.com (Jan Wieck)
Дата:
>
> >> > * 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.


Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.                                  #
#======================================== jwieck@debis.com (Jan Wieck) #