LOG: failed to commit transaction_isolation

Started by Michael Fuhrover 21 years ago2 messagesgeneral
Jump to latest
#1Michael Fuhr
mike@fuhr.org

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/

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Michael Fuhr (#1)
Re: LOG: failed to commit transaction_isolation

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