From c114aff4356be1b9b3fa1ed2c3e123926cffe6db Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Thu, 21 Aug 2014 05:27:57 +0100 Subject: [PATCH] Document WITH HOLD corrections. --- NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NEWS b/NEWS index e471e528..2f71a374 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,9 @@ What's new in psycopg 2.5.4 proper methods (:ticket:`#219`). - Force conversion of pool arguments to integer to avoid potentially unbounded pools (:ticket:`#220`). +- Cursors :sql:`WITH HOLD` don't begin a new transaction upon move/fetch/close + (:ticket:`#228`). +- Cursors :sql:`WITH HOLD` can be used in autocommit (:ticket:`#229`). - Don't ignore silently the `cursor.callproc` argument without a length. - Added a few errors missing from `~psycopg2.errorcodes`, defined by PostgreSQL but not documented.