Re: Tracking Down Error in Stored Procedure

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Tracking Down Error in Stored Procedure
Дата
Msg-id 8476.1165040459@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Tracking Down Error in Stored Procedure  ("Aaron Bono" <postgresql@aranya.com>)
Ответы Re: Tracking Down Error in Stored Procedure  ("Aaron Bono" <postgresql@aranya.com>)
Список pgsql-sql
"Aaron Bono" <postgresql@aranya.com> writes:
> CONTEXT:  PL/pgSQL function "update_web_site_hits_fn" line 200 at execute
> statement

> My question is this:  What is line 200?  Is it the 200th line after the
> CREATE part of the stored procedure?  Or is it the 200th line after the
> BEGIN?  Or maybe something else?

It's the 200th line in the function body string.  IIRC there is a
special case to not count a leading newline in the body string,
so that the counting goes like

CREATE FUNCTION foo ... RETURNS ... AS $$   DECLARE        -- this is line 1

or without exploiting the special case

CREATE FUNCTION foo ... RETURNS ... AS $$DECLARE        -- this is line 1
        regards, tom lane


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

Предыдущее
От: "Aaron Bono"
Дата:
Сообщение: Tracking Down Error in Stored Procedure
Следующее
От: "Aaron Bono"
Дата:
Сообщение: Re: Tracking Down Error in Stored Procedure