Обсуждение: LOG: failed to commit transaction_isolation

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

LOG: failed to commit transaction_isolation

От
Michael Fuhr
Дата:
PostgreSQL 8.0.0beta2 (CVS)
Solaris 9

I've noticed the following message in the server's logs:

LOG: failed to commit transaction_isolation

The log message appears if I issue a SET TRANSACTION ISOLATION LEVEL
and later do a ROLLBACK.  For example:

BEGIN;
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;  -- or READ COMMITTED
SELECT VERSION();
ROLLBACK;

Why the log message?  Is this by design or is it a bug?

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

Re: LOG: failed to commit transaction_isolation

От
Tom Lane
Дата:
Michael Fuhr <mike@fuhr.org> writes:
> I've noticed the following message in the server's logs:
> LOG: failed to commit transaction_isolation
> Why the log message?  Is this by design or is it a bug?

It's a bug.  Fixed --- thanks for the test case.

            regards, tom lane