Re: BUG #1329: Bug in IF-ELSEIF-ELSE construct

Поиск
Список
Период
Сортировка
От Neil Conway
Тема Re: BUG #1329: Bug in IF-ELSEIF-ELSE construct
Дата
Msg-id 1101699235.22124.12.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Re: BUG #1329: Bug in IF-ELSEIF-ELSE construct  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: BUG #1329: Bug in IF-ELSEIF-ELSE construct  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #1329: Bug in IF-ELSEIF-ELSE construct  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
On Sat, 2004-11-27 at 12:55 -0500, Tom Lane wrote:
> This seems like the most appropriate answer to me; I was thinking of
> doing that earlier when Fabien and I were fooling with plpgsql error
> reporting, but didn't get around to it.

Attached is a patch that implements a rough draft of this (it also
includes an improved version of the "unreachable code" patch that
includes your suggested fixes). Two questions about the patch:

(1) It doesn't report syntax errors in unreachable code. I suppose this
ought to be done, right?

(2) The syntax error message is wrong (we print a character offset and
query context that is relative to the CREATE FUNCTION statement, not the
individual SQL statement we're executing). I fooled around a bit with
defining a custom ereport() callback to print the right line number and
query context, but I couldn't get it right. Do you have any guidance on
the proper way to do this.

> As long as you only do this in check_function_bodies mode it seems
> safe enough.  One possible problem (if it's done towards the end of
> parsing as you've suggested for dead-code checking) is that a syntax
> error in a SQL statement might confuse the plpgsql parser into
> misparsing statement boundaries, which could lead to a plpgsql parse
> error much further down, such as a "missing END" at the end of the
> function.  The error would be more useful if reported immediately
> after the putative SQL statement is parsed.  Not sure if that's
> hard or not.  (The same remark applies to dead code checking, now
> that I think about it.)

In the case of dead code checking, I don't think it matters. Doing the
syntax check in gram.y might be a better idea, I'll take a look doing
that...

-Neil


Вложения

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: BUG #1311: Can't crosscompile
Следующее
От: Mehul Doshi-A20614
Дата:
Сообщение: Re: Installation fails for postgresql-8.0.0-beta4 on Windo