diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-09 12:01:31 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-09 12:01:31 -0400 |
| commit | 70a173d22b520b41acc8624f1a1d6c8c456412f7 (patch) | |
| tree | b7d029e5c8a111de83ee4755a5ad7219e6ecac9f /doc | |
| parent | df4e59ff557b16202c4c3e47ad48667ba1e143c0 (diff) | |
| download | sqlalchemy-70a173d22b520b41acc8624f1a1d6c8c456412f7.tar.gz | |
0.7 changelog
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build/changelog/changelog_07.rst | 14 | ||||
| -rw-r--r-- | doc/build/changelog/changelog_08.rst | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/doc/build/changelog/changelog_07.rst b/doc/build/changelog/changelog_07.rst index df63654a4..06e943a86 100644 --- a/doc/build/changelog/changelog_07.rst +++ b/doc/build/changelog/changelog_07.rst @@ -8,6 +8,20 @@ .. change:: :tags: bug, orm + :tickets: 2699 + + Fixed bug when a query of the form: + ``query(SubClass).options(subqueryload(Baseclass.attrname))``, + where ``SubClass`` is a joined inh of ``BaseClass``, + would fail to apply the ``JOIN`` inside the subquery + on the attribute load, producing a cartesian product. + The populated results still tended to be correct as additional + rows are just ignored, so this issue may be present as a + performance degradation in applications that are + otherwise working correctly. + + .. change:: + :tags: bug, orm :tickets: 2689 Fixed bug in unit of work whereby a joined-inheritance diff --git a/doc/build/changelog/changelog_08.rst b/doc/build/changelog/changelog_08.rst index 5046c6689..503b8932b 100644 --- a/doc/build/changelog/changelog_08.rst +++ b/doc/build/changelog/changelog_08.rst @@ -18,7 +18,7 @@ The populated results still tended to be correct as additional rows are just ignored, so this issue may be present as a performance degradation in applications that are - otherwise working correctly. + otherwise working correctly. Also in 0.7.11. .. change:: :tags: bug, orm |
