summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-02-05 12:03:46 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-02-05 12:03:46 -0500
commit16cd07c4f896b03d0e73fc28b5279421dab53489 (patch)
tree3a576036c3f3fb1a7b0da50480e9d8996012bbf3 /doc
parentb069127b2d3f7b3f2c27f91cfcd32152a98c907f (diff)
downloadsqlalchemy-16cd07c4f896b03d0e73fc28b5279421dab53489.tar.gz
- Fixed bug where so-called "literal render" of :func:`.bindparam`
constructs would fail if the bind were constructed with a callable, rather than a direct value. This prevented ORM expressions from being rendered with the "literal_binds" compiler flag.
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index 8e5fea1a7..d452c4bb3 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -15,6 +15,14 @@
:version: 0.9.3
.. change::
+ :tags: bug, sql
+
+ Fixed bug where so-called "literal render" of :func:`.bindparam`
+ constructs would fail if the bind were constructed with a callable,
+ rather than a direct value. This prevented ORM expressions
+ from being rendered with the "literal_binds" compiler flag.
+
+ .. change::
:tags: bug, orm
:tickets: 2935