From: | Gaetano Mendola <mendola(at)bigfoot(dot)com> |
---|---|
To: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
Subject: | Re: 7.5 release notes |
Date: | 2004-07-26 00:22:21 |
Message-ID: | 41044EBD.7030608@bigfoot.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-docs pgsql-hackers |
In the release not I can read:
#Allow arbitrary row expressions (Tom)
This allows columns to contain arbitrary composite types
like rows from other tables. [SNIPPED]
Wasn't this alread true on 7.4 ?
See:
kalman=# select version();
version
---------------------------------------------------------------------------------------------------------
PostgreSQL 7.4.2 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
(1 row)
kalman=# create table test ( a varchar, b varchar, c varchar );
CREATE TABLE
kalman=# create table test1 ( d integer, e test );
CREATE TABLE
kalman=# select * from test1;
d | e
---+---
(0 rows)
kalman=# select e from test1;
e
---
(0 rows)
kalman=# select (e).a from test1;
a
---
(0 rows)
Regards
Gaetano Mendola
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2004-07-26 00:23:49 | Re: [HACKERS] 7.5 release notes |
Previous Message | Bruce Momjian | 2004-07-26 00:21:52 | Re: [HACKERS] 7.5 release notes |
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2004-07-26 00:23:49 | Re: [HACKERS] 7.5 release notes |
Previous Message | Bruce Momjian | 2004-07-26 00:21:52 | Re: [HACKERS] 7.5 release notes |