diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-05-16 10:32:07 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-05-16 10:32:07 -0400 |
| commit | a51ab916622dd016ce51d6be0969112817cc42ad (patch) | |
| tree | c141be1fd3dc6371eda8e75c17943bf521c914c3 /doc | |
| parent | 1873d8107ac8cf4258440914d68f12332220e244 (diff) | |
| download | sqlalchemy-a51ab916622dd016ce51d6be0969112817cc42ad.tar.gz | |
Accommodate "callable" bound param in evaluator
Fixed bug in "evaluate" strategy of :meth:`.Query.update` and
:meth:`.Query.delete` which would fail to accommodate a bound
parameter with a "callable" value, as which occurs when filtering
by a many-to-one equality expression along a relationship.
Change-Id: I47758d3f5d8b9ea1a07e23166780d5f3c32b17f1
Fixes: #3700
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_10.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_10.rst b/doc/build/changelog/changelog_10.rst index 30f8fb73e..f40c0a484 100644 --- a/doc/build/changelog/changelog_10.rst +++ b/doc/build/changelog/changelog_10.rst @@ -19,6 +19,15 @@ :version: 1.0.13 .. change:: + :tags: bug, orm + :tickets: 3700 + + Fixed bug in "evaluate" strategy of :meth:`.Query.update` and + :meth:`.Query.delete` which would fail to accommodate a bound + parameter with a "callable" value, as which occurs when filtering + by a many-to-one equality expression along a relationship. + + .. change:: :tags: bug, postgresql :tickets: 3715 |
