Re: [GENERAL] Track a function

2009-02-14 Thread Raymond O'Donnell
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

Re: [GENERAL] Track a function

2009-02-14 Thread Andreas Kretschmer
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

[GENERAL] Track a function

2009-02-14 Thread Carlos Henrique Reimer
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? Thank you! Carlos -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make cha