Greetings, again!
As an FYI, I am beginning the migration of this list now. You may see
emails to this list be paused for a period of time, but none is expected
to be lost.
Thanks!
Stephen
* Stephen Frost (sfr...@snowman.net) wrote:
> Greetings!
>
> The PostgreSQL Infrastructure team will be
Let's say we have this function:
CREATE OR REPLACE FUNCTION public.test(in_value character varying) RETURNS
character varying
LANGUAGE 'plpgsql' COST 100.0 VOLATILE LEAKPROOF SECURITY DEFINER
AS $$
BEGIN
RETURN in_value;
END;
$$;
ALTER FUNCTION public.test(character varying) OWNER