This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author aymeric.augustin
Recipients Jeremy Banks, Jim.Jewett, Mark.Bucciarelli, Ronny.Pfannschmidt, adamtj, asvetlov, aymeric.augustin, bulb, dholth, flox, ghaering, monsanto, pitrou, r.david.murray, scott.urban, torsten, tshepang, zzzeek
Date 2014-06-13.21:16:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402694212.75.0.607240327539.issue10740@psf.upfronthosting.co.za>
In-reply-to
Content
The problem is super simple:

connection = ...
cursor = connection.cursor()
cursor.execute("SAVEPOINT foo")
cursor.execute("ROLLBACK TO SAVEPOINT foo")  # will report that the savepoint doesn't exist.

Please don't make it look more complicated than it is.
History
Date User Action Args
2014-06-13 21:16:52aymeric.augustinsetrecipients: + aymeric.augustin, ghaering, pitrou, Jeremy Banks, r.david.murray, zzzeek, asvetlov, flox, adamtj, dholth, torsten, monsanto, scott.urban, tshepang, Ronny.Pfannschmidt, Mark.Bucciarelli, Jim.Jewett, bulb
2014-06-13 21:16:52aymeric.augustinsetmessageid: <1402694212.75.0.607240327539.issue10740@psf.upfronthosting.co.za>
2014-06-13 21:16:52aymeric.augustinlinkissue10740 messages
2014-06-13 21:16:52aymeric.augustincreate