summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-04-23 20:06:04 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-04-23 20:06:04 -0400
commit7a26ad2ef1bda284f907a8396cea2a794c6ee400 (patch)
treebeb09ed9b5cf97dbfcd93e8b340ec2c4bb5ba7de /doc
parent77e0a5dffe7950a729d6c16afbc70bb867af6dd8 (diff)
parente49efb5e2ce566c9840a82b8e4e9d8650459f7d6 (diff)
downloadsqlalchemy-7a26ad2ef1bda284f907a8396cea2a794c6ee400.tar.gz
- merge exists() patch + changelog
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_08.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index 97b3626af..ae4ff3b82 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -7,6 +7,14 @@
:version: 0.8.1
.. change::
+ :tags: feature, orm
+ :tickets: 2673
+
+ Added a convenience method to Query that turns a query into an
+ EXISTS subquery of the form
+ ``EXISTS (SELECT 1 FROM ... WHERE ...)``.
+
+ .. change::
:tags: bug, orm
Added a conditional to the unpickling process for ORM