BUG #13940: rollback prepared is not working

From: prathameshsonavane(at)gmail(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #13940: rollback prepared is not working
Date: 2016-02-10 10:46:04
Message-ID: 20160210104604.24153.46549@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 13940
Logged by: Prathamesh Sonavane
Email address: prathameshsonavane(at)gmail(dot)com
PostgreSQL version: 9.2.14
Operating system: windows 7 enterprise
Description:

I am trying following prepared transaction:

(
BEGIN TRANSACTION;
PREPARE TRANSACTION 'B';
UPDATE xyz
SET jkl=20 WHERE lmn="XX";
)

Now it will change value of jkl to 20.
Now i am executing following query b4 "commit prepared B":

(
rollback PREPARED 'B';
)

indeed..it shud set jkl to its old value.but, still its showing 20 after
issuing this command. its very annoying. :(

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message gsv371 2016-02-10 10:53:28 BUG #13941: Different value "pg_constraint.consrc" for similar Check Constrait
Previous Message Michael Paquier 2016-02-10 08:12:26 Re: Re: BUG #13685: Archiving while idle every archive_timeout with wal_level hot_standby