Re: Proposal: casts row to array and array to row

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: Proposal: casts row to array and array to row
Дата
Msg-id CA+TgmoYRhH1BC9iKjJ5Z0K8wrtCyD7DG8Sk5L0N_4HEftJpgVg@mail.gmail.com
обсуждение исходный текст
Ответ на Proposal: casts row to array and array to row  (Pavel Stehule <pavel.stehule@gmail.com>)
Ответы Re: Proposal: casts row to array and array to row
Re: Proposal: casts row to array and array to row
Список pgsql-hackers
On Tue, Oct 11, 2011 at 4:40 AM, Pavel Stehule <pavel.stehule@gmail.com> wrote:
> Hello
>
> A current limits of dynamic work with row types in PL/pgSQL can be
> decreased with a possible casts between rows and arrays. Now we have a
> lot of tools for arrays, and these tools should be used for rows too.
>
> postgres=# \d mypoint
> Composite type "public.mypoint"
>  Column │  Type   │ Modifiers
> ────────┼─────────┼───────────
>  a      │ integer │
>  b      │ integer │
>
> postgres=# select cast(rmypoint '(10,20) as int[]);
>   array
> ────────────
>  {10,20}
> (1 row)
>
> postgres=# select cast(ARRAY[10,20] AS mypoint);
>  mypoint
> ─────────
>  (10,20)
> (1 row)
>
> What do you think about this idea?

Well, a ROW can contain values of different types; an ARRAY can't.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

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

Предыдущее
От: Alexander Korotkov
Дата:
Сообщение: Re: index-only scans
Следующее
От: Yeb Havinga
Дата:
Сообщение: Re: [REVIEW] Patch for cursor calling with named parameters