Re: plpgsql: debugging

Поиск
Список
Период
Сортировка
От Ludwig Lim
Тема Re: plpgsql: debugging
Дата
Msg-id 20030124074110.57736.qmail@web80312.mail.yahoo.com
обсуждение исходный текст
Ответ на plpgsql: debugging  (Oliver Vecernik <vecernik@aon.at>)
Список pgsql-sql
--- Oliver Vecernik <vecernik@aon.at> wrote:
> Hi,
> 
> Searching Google I found a thread in July 2001
> concerning the facilities 
> for debugging plpgsql functions. The actual answer
> was: it should be 
> improved.
> 
> What is the best way to debug a plpgsql function?
> 
> Oliver
   This may not be the best way since its a bit
crude. Try using RAISE NOTICE every now then to
monitor the values of variables in the screen and
record it in log file.
   Example :
   RAISE NOTICE ''Initial value of variable =
%'',v_variable;
   /* Do some computation ... */
   RAISE NOTICE ''Value of variable after operation =
%'',v_variable;   


hope that helps,

ludwig


__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com


В списке pgsql-sql по дате отправления:

Предыдущее
От: Achilleus Mantzios
Дата:
Сообщение: Re: Scheduling Events?
Следующее
От: Chris Gamache
Дата:
Сообщение: Race condition w/ FIFO Queue reappears!