Re: How to cast to regprocedure with OUT parameters

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Re: How to cast to regprocedure with OUT parameters
Дата
Msg-id lsilse$rbv$1@ger.gmane.org
обсуждение исходный текст
Ответ на Re: How to cast to regprocedure with OUT parameters  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Tom Lane wrote on 14.08.2014 17:33:
> Leave out the OUT parameters altogether:
>
> select pg_get_functiondef('public.foo(text, text)'::regprocedure);
>
> Only IN parameters contribute to the function's identity; OUT parameters
> are just a variant method of specifying its return type.

Ah, great. I didn't think of that.

> Personally I wouldn't randomly mix IN and OUT like that, but put all the
> OUT parameters at the end of the list.  It seems too confusing otherwise.

I agree ;) and I'm not creating functions like that.

I'm just trying to tackle all possible combinations in order to reliably retrieve a functions source code in my tool
SQLWorkbench/J 

Thanks for the quick reply
Thomas



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: How to cast to regprocedure with OUT parameters
Следующее
От: Si Chen
Дата:
Сообщение: is there a way log last query in pg_stat_activity