summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-04-18 20:11:08 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-04-18 20:11:08 -0400
commitb6bf8c2a3001c38684ef806678dd187926e1910b (patch)
treed26137ca93535ec0402b236004e5daaef3519542 /doc
parent23c43e94b0d7c5d69595d63cc205f3c08fe78fa3 (diff)
downloadsqlalchemy-b6bf8c2a3001c38684ef806678dd187926e1910b.tar.gz
Fixed a long-standing bug in the caching example, where
the limit/offset parameter values wouldn't be taken into account when computing the cache key. The _key_from_query() function has been simplified to work directly from the final compiled statement in order to get at both the full statement as well as the fully processed parameter list.
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_08.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst
index 25a8d4c19..0cf5e1f13 100644
--- a/doc/build/changelog/changelog_08.rst
+++ b/doc/build/changelog/changelog_08.rst
@@ -7,6 +7,17 @@
:version: 0.8.1
.. change::
+ :tags: bug, examples
+
+ Fixed a long-standing bug in the caching example, where
+ the limit/offset parameter values wouldn't be taken into
+ account when computing the cache key. The
+ _key_from_query() function has been simplified to work
+ directly from the final compiled statement in order to get
+ at both the full statement as well as the fully processed
+ parameter list.
+
+ .. change::
:tags: bug, mssql
:tickets: 2355