diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-05-13 16:13:15 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-05-13 16:13:15 -0400 |
| commit | f574bcf98de0d30f0a28bf82aae84098157de0f4 (patch) | |
| tree | cde44d71de3fe100f66d04e8667c990223623b20 /doc | |
| parent | f35be1d578e89f8727cd015e90f3a3f0a43213cf (diff) | |
| download | sqlalchemy-f574bcf98de0d30f0a28bf82aae84098157de0f4.tar.gz | |
Fixed a regression from 0.7 caused by this ticket, which
made the check for recursion overflow in self-referential
eager joining too loose, missing a particular circumstance
where a subclass had lazy="joined" or "subquery" configured
and the load was a "with_polymorphic" against the base.
[ticket:2481]
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index aa8f0f878..663d3a40b 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -8,6 +8,16 @@ .. change:: :tags: bug, orm + :tickets: 2481 + + Fixed a regression from 0.7 caused by this ticket, which + made the check for recursion overflow in self-referential + eager joining too loose, missing a particular circumstance + where a subclass had lazy="joined" or "subquery" configured + and the load was a "with_polymorphic" against the base. + + .. change:: + :tags: bug, orm :tickets: 2718 Fixed a regression from 0.7 where the contextmanager feature |
