Re: Should we still require RETURN in plpgsql?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Should we still require RETURN in plpgsql?
Дата
Msg-id 10862.1112687019@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Should we still require RETURN in plpgsql?  (Dennis Bjorklund <db@zigo.dhs.org>)
Ответы Re: Should we still require RETURN in plpgsql?  (Robert Treat <xzilla@users.sourceforge.net>)
Список pgsql-hackers
Dennis Bjorklund <db@zigo.dhs.org> writes:
> On Tue, 5 Apr 2005, Tom Lane wrote:
>> CREATE FUNCTION sum_n_product(x int, y int, OUT sum int, OUT prod int) AS $$
>> BEGIN
>> sum := x + y;
>> prod := x * y;
>> RETURN;
>> END;
>> $$ LANGUAGE plpgsql;

> The above code example do not have any RETURNS clause, does that mean that 
> it defaults to RETURNS void?

No, it effectively "RETURNS record", where the particular record type is
implied by the set of output parameters.  See my previous proposal.
        regards, tom lane


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

Предыдущее
От: Dennis Bjorklund
Дата:
Сообщение: Re: Should we still require RETURN in plpgsql?
Следующее
От: Russell Smith
Дата:
Сообщение: Re: [GENERAL] plPHP in core?