On 14/02/2009 16:34, Carlos Henrique Reimer wrote:
> I've a plpgsql function that when called never ends and I would like to
> trace the internal function commands and see where is the problem.
>
> How can I trace what the function is doing?
You could insert RAISE NOTICE statements into your cod
Carlos Henrique Reimer schrieb:
> Hi,
>
> I've a plpgsql function that when called never ends and I would like to
> trace the internal function commands and see where is the problem.
>
> How can I trace what the function is doing?
You can use RAISE NOTICE 'i'm here %', variable;
to display whe