Re: Anonymous code blocks

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: Anonymous code blocks
Дата
Msg-id b42b73150909221044r7f0d81e1me15b81621d6c915c@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Anonymous code blocks  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: Anonymous code blocks  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Sat, Sep 19, 2009 at 8:23 PM, Andrew Dunstan <andrew@dunslane.net> wrote:
> Dimitri Fontaine wrote:
>>
>> So here are the major points about this patch:
>>
>>  - it's missing the returns declaration syntax (default value could be
>>   returns void?)
>>
>>  - it would be much more friendly to users if it had a default output
>>   for queries, the returned object seems a good fit
>>
>
> Really? That wasn't my expectation at all. I expected that the code would in
> effect be always returning void. I think you're moving the goalposts a bit
> here. I don't think we need a RETURNS clause on it for it to be useful.

A note about void returning functions....there are no send/recv
functions for the void type which will cause problems for users of
this feature over the binary protocol.  You can work around this with
normal functions by forcing them to return a value but not with ACB.
Is there any reason why void doens't have send/recv?

merlin


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

Предыдущее
От: Jaime Casanova
Дата:
Сообщение: Re: [PATCH] Largeobject access controls
Следующее
От: Robert Haas
Дата:
Сообщение: Re: Anonymous code blocks vs CREATE LANGUAGE