Обсуждение: possible bug in exception handling code? (postgres8.0beta)

Поиск
Список
Период
Сортировка

possible bug in exception handling code? (postgres8.0beta)

От
Paramveer.Singh@trilogy.com
Дата:
Hi all!
I was looking into the postgres8.0 code for exception handling,
and it seems that the grammer treats an exception condition as opt_lblname.
This means that I can pass any arbitrary string as an exception condition.
This also means that implementation of user defined exceptions would be in
trouble.

Note that the execution would not be affected(for now, i.e. without user
defined exceptions), it's just a compiler vulnerability.

example:

declare
      a int;
begin
      return 1;
exception
      when a OR any_random_string OR DIVISION_BY_ZERO then
            return 0;
end;

would compile, when in fact it should not. (or am I totally wrong here?)
pl_exec.c has a exception label map which is used at execution, when the
exception actually happens.
Wouldn't it be preferable to use it at compile time?

**************

Also, I noticed that for

begin
      valid_stmt_1;
      valid_stmt_2;
      zero_divide_exception_causing_stmt;
exception
      when DIVISION_BY_ZERO then
            return safely;
end;

valid_stmt_1 and 2 are rolled back.
This happens because whenever execution goes into the catch block,
the staments for that level are rolled back before searching for
exceptions.
Shouldn't it be the other way around? as in, searching for a handler, and
rolling the subtransaction back only if no handler is found?

thanks
paraM



Re: possible bug in exception handling code? (postgres8.0beta)

От
Tom Lane
Дата:
Paramveer.Singh@trilogy.com writes:
> would compile, when in fact it should not. (or am I totally wrong here?)
> pl_exec.c has a exception label map which is used at execution, when the
> exception actually happens.
> Wouldn't it be preferable to use it at compile time?

That is on my to-do list.  One question is whether we *want* unknown
condition names to be rejected.  Probably the answer is yes, but you
could make an argument the other way.

> Shouldn't it be the other way around?

No.  You do not have the option not to roll back, no matter what handler
is found or not found.

            regards, tom lane