Mention query cancelling in the release notes.

This commit is contained in:
Daniele Varrazzo 2010-11-28 12:14:04 +00:00
parent 751bfa1ea6
commit 4dbd4344a3
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2010-11-28 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* Cancel patch from Jan integrated.
2010-11-22 Daniele Varrazzo <daniele.varrazzo@gmail.com> 2010-11-22 Daniele Varrazzo <daniele.varrazzo@gmail.com>
* psycopg/connection_int.c: dropped notices hack to get COPY errors from * psycopg/connection_int.c: dropped notices hack to get COPY errors from

View File

@ -3,13 +3,14 @@ What's new in psycopg 2.3.0
psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0. psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0.
* New features related to features introduced in PostgreSQL 9.0: * Main new fratures:
- `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both - `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both
9.0 and pre-9.0 syntax. 9.0 and pre-9.0 syntax.
- Two-phase commit protocol support as per DBAPI specification. - Two-phase commit protocol support as per DBAPI specification.
- Support for payload in notifications received from the backed. - Support for payload in notifications received from the backed.
- namedtuple returning cursor. - namedtuple-returning cursor.
- Query execution cancel.
* Other features and changes: * Other features and changes:

View File

@ -281,7 +281,7 @@ The ``connection`` class
.. |PQcancel| replace:: `!PQcancel()` .. |PQcancel| replace:: `!PQcancel()`
.. _PQcancel: http://www.postgresql.org/docs/8.4/static/libpq-cancel.html#AEN34765 .. _PQcancel: http://www.postgresql.org/docs/8.4/static/libpq-cancel.html#AEN34765
.. versionadded:: 2.2.3 .. versionadded:: 2.3
.. method:: reset .. method:: reset