Re: Playing with 9.4devel - unnest

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Playing with 9.4devel - unnest
Дата
Msg-id 738.1394464214@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Playing with 9.4devel - unnest  (Tim Kane <tim.kane@gmail.com>)
Ответы Re: Playing with 9.4devel - unnest  (Tim Kane <tim.kane@gmail.com>)
Список pgsql-general
Tim Kane <tim.kane@gmail.com> writes:
> I decided to have a play with postgresql-9.4devel as I wanted to explore the
> functionality provided by
> unnest (anyarray, anyarray [, …])
> I’ve taken the nightly snpahost, compiled, installed.. All good.  (Obtained
> from http://ftp.postgresql.org/pub/snapshot/dev/ )
> However it seems the expected multi-argument unnest function doesn’t exist.

> Have I missed something?

It's there:

regression=# select * from unnest(array[1,2], array[3,4]);
 unnest | unnest
--------+--------
      1 |      3
      2 |      4
(2 rows)

If you were expecting this to change, it didn't:

regression=# \df unnest
                           List of functions
   Schema   |  Name  | Result data type | Argument data types |  Type
------------+--------+------------------+---------------------+--------
 pg_catalog | unnest | SETOF anyelement | anyarray            | normal
(1 row)

because the new functionality arises from a parser transformation,
not from a simple function.

            regards, tom lane


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

Предыдущее
От: matshyeq
Дата:
Сообщение: Re: libpq - lack of support to set the fetch size
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: libpq - lack of support to set the fetch size