LOG: failed to commit transaction_isolation

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: pgsql-general(at)postgresql(dot)org
Subject: LOG: failed to commit transaction_isolation
Date: 2004-09-12 16:27:02
Message-ID: 20040912162702.GA44191@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

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/

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2004-09-12 16:34:20 Re: View efficiency questions
Previous Message Nick 2004-09-12 16:16:37 Re: Auto increment/sequence on multiple columns?