Re: [HACKERS] Domains and arrays and composites, oh my

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] Domains and arrays and composites, oh my
Дата
Msg-id 15150.1499974968@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] Domains and arrays and composites, oh my  ("David G. Johnston" <david.g.johnston@gmail.com>)
Ответы Re: [HACKERS] Domains and arrays and composites, oh my  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Thursday, July 13, 2017, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> regression=# select * from fdc();
>> fdc
>> -------
>> (1,2)
>> (1 row)

> Select (fdc).* from fdc();  is considerably more intuitive that the cast.
> Does that give the expected multi-column result?

Yeah, it does, although I'm not sure how intuitive it is that the
parentheses are significant ...

regression=#  select * from fdc(); fdc  
-------(1,2)
(1 row)

regression=# select fdc from fdc(); fdc  
-------(1,2)
(1 row)

regression=# select fdc.* from fdc(); fdc  
-------(1,2)
(1 row)

regression=# select (fdc).* from fdc();r | i 
---+---1 | 2
(1 row)
        regards, tom lane



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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: [HACKERS] Domains and arrays and composites, oh my
Следующее
От: Peter Geoghegan
Дата:
Сообщение: Re: [HACKERS] [WIP] Zipfian distribution in pgbench