Track a function

Started by Carlos Henrique Reimerabout 17 years ago3 messagesgeneral
Jump to latest
#1Carlos Henrique Reimer
carlos.reimer@opendb.com.br

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

#2Andreas Kretschmer
akretschmer@spamfence.net
In reply to: Carlos Henrique Reimer (#1)
Re: Track a function

Carlos Henrique Reimer <carlos.reimer@opendb.com.br> 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 where the function is and also the content of variables.

Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly." (unknown)
Kaufbach, Saxony, Germany, Europe. N 51.05082�, E 13.56889�

In reply to: Carlos Henrique Reimer (#1)
Re: Track a function

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 code, to show where
it is at that point.

You could also try the PL/PGSQL debugger, which comes as a contrib
module - pgAdmin III can act as a client for it,

Ray.

------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------