AW: AW: TODO (was: Re: [HACKERS] Problem with parser) - Mailing list pgsql-hackers

From Andreas Zeugswetter
Subject AW: AW: TODO (was: Re: [HACKERS] Problem with parser)
Date
Msg-id 01BDD274.CDCF8310@zeugswettera.user.lan.at
Whole thread Raw
List 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 by date:

Previous
From: Tom Ivar Helbekkmo
Date:
Subject: Re: [HACKERS] vacuum problem
Next
From: Andreas Zeugswetter
Date:
Subject: long long int and printf format for int8.c