summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2016-02-03 11:07:44 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2016-02-03 11:07:44 -0500
commit150591f9e0a94902cb2a76b68ac7c9d8a1a3ec83 (patch)
tree88e0853370bc6d306f54047b5c85cf9bb4155e24 /doc
parentc9b03fa8afd52646aba8c59fc038330eeee6db60 (diff)
downloadsqlalchemy-150591f9e0a94902cb2a76b68ac7c9d8a1a3ec83.tar.gz
- add literal_binds for delete() statements in addition to insert()/update()
- move tests to CRUDTest - changelog, fixes #3643
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_10.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst
index 15996be21..6130fdcef 100644
--- a/doc/build/changelog/changelog_10.rst
+++ b/doc/build/changelog/changelog_10.rst
@@ -20,6 +20,16 @@
:released:
.. change::
+ :tags: bug, sql
+ :tickets: 3643
+ :pullreq: github:232
+
+ Fixed issue where the "literal_binds" flag was not propagated
+ for :func:`.expression.insert`, :func:`.expression.update` or
+ :func:`.expression.delete` constructs when compiled to string
+ SQL. Pull request courtesy Tim Tate.
+
+ .. change::
:tags: bug, oracle, jython
:tickets: 3621