Re: plperl features

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: plperl features
Дата
Msg-id 20040929162003.GA8007@dcc.uchile.cl
обсуждение исходный текст
Ответ на plperl features  (Sergej Sergeev <sergej@commandprompt.com>)
Ответы Re: plperl features
Re: plperl features
Список pgsql-patches
On Wed, Sep 29, 2004 at 07:13:47PM +0300, Sergej Sergeev wrote:
> Patch provide support for array type and pseudo type
> (anyelement, anyarray) for function parameters and result.
> for example:
>
> CREATE FUNCTION add_three_values(anyelement, anyelement, anyelement)
> RETURNS anyelement AS '
> return $_[0]+$_[1]+$_[2];
> ' LANGUAGE plperl;
>
> CREATE FUNCTION make_array(anyelement, anyelement, anyelement) RETURNS
> anyarray AS '
> return [$_[0], $_[1], $_[2]];
> ' LANGUAGE plperl;
>
> Comments?

What happens if you feed other pseudotypes, like cstring or
language_handler?  Shouldn't that be disallowed or something?

--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
"Java is clearly an example of a money oriented programming"  (A. Stepanov)


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

Предыдущее
От: Sergej Sergeev
Дата:
Сообщение: plperl features
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: FAQ translation in farsi