Re: unnest

Поиск
Список
Период
Сортировка
От Gavin Sherry
Тема Re: unnest
Дата
Msg-id Pine.LNX.4.58.0411091315420.11622@linuxworld.com.au
обсуждение исходный текст
Ответ на unnest  ("John Hansen" <john@geeknet.com.au>)
Список pgsql-hackers
On Fri, 5 Nov 2004, John Hansen wrote:

> Attached, array -> rows iterator.
>
> select * from unnest(array[1,2,3,4,5]);
>
> Unnest
> ---------------
>  1
>  2
>  3
>  4
>  5
> 5 rows

This mechanism is actually designed for the multiset data type in SQL.
AFAICT, our elementary one dimensional array handling mimics SQL
multisets. Is there any intention to bring this into line with the spec or
would that be mere pedantism?

Thanks,

Gavin


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

Предыдущее
От: Eric B.Ridge
Дата:
Сообщение: Re: unnest
Следующее
От: John Hansen
Дата:
Сообщение: Re: unnest