pgsql-server/src/backend/parser parse_relation.c

Started by Bruce Momjianalmost 24 years ago1 messagescomitters
Jump to latest
#1Bruce Momjian
bruce@momjian.us

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: momjian@postgresql.org 02/08/06 01:34:10

Modified files:
src/backend/parser: parse_relation.c

Log message:

Hm. I'd sort of expect the "z" to become both the table and column
alias in this case. What do you think?

I guess that would make sense. I'll make a separate patch just for

that

change if that's OK.

Simple change -- patch attached.

test=# select * from myfoo1() as z;
z
----
1
2
3
(3 rows)

Joe Conway