> Hello
>
> this small patch allow use sql for creating wrappers others void
functions.
> Currently void SQL function have to be empty.
>
> create or replace function foo(int) returns void as ' ','' language c
..;
> create or replace function foo() returns void as $$ select foo(10);
> $$lang
On Thu, Mar 16, 2006 at 10:56:43PM -0500, Jaime Casanova wrote:
> On 3/16/06, Pavel Stehule <[EMAIL PROTECTED]> wrote:
> > Hello
> >
> > this small patch allow use sql for creating wrappers others void
> > functions. Currently void SQL function have to be empty.
> >
> > create or replace function
On 3/16/06, Pavel Stehule <[EMAIL PROTECTED]> wrote:
> Hello
>
> this small patch allow use sql for creating wrappers others void functions.
> Currently void SQL function have to be empty.
>
> create or replace function foo(int) returns void as ' ','' language c ..;
> create or replace function foo
Hello
this small patch allow use sql for creating wrappers others void functions.
Currently void SQL function have to be empty.
create or replace function foo(int) returns void as ' ','' language c ..;
create or replace function foo() returns void as $$ select foo(10);
$$language sql;
regar