Re: 7.5 release notes

Поиск
Список
Период
Сортировка
От Gaetano Mendola
Тема Re: 7.5 release notes
Дата
Msg-id 41044EBD.7030608@bigfoot.com
обсуждение исходный текст
Ответ на Re: 7.5 release notes  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: 7.5 release notes
Список 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.2on 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






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

Предыдущее
От: Gaetano Mendola
Дата:
Сообщение: 7.5 backend crash
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: 7.5 release notes