diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-11 16:33:40 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-04-11 16:33:40 -0400 |
commit | 7a21813eeb3e3c9050b30a175eeec4d3c941761c (patch) | |
tree | 1b00271892546c26dcba5aaabc8fd6d9d2290ccf | |
parent | 2b550518e146a978a1923e87f5cbe1e186125f67 (diff) | |
download | sqlalchemy-7a21813eeb3e3c9050b30a175eeec4d3c941761c.tar.gz |
indentation fix
-rw-r--r-- | doc/build/changelog/changelog_07.rst | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/doc/build/changelog/changelog_07.rst b/doc/build/changelog/changelog_07.rst index 94a2980f9..476a4f359 100644 --- a/doc/build/changelog/changelog_07.rst +++ b/doc/build/changelog/changelog_07.rst @@ -10,24 +10,24 @@ :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. + 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 - subclass could insert the row for the "sub" table - before the parent table, if the two tables had no - ForeignKey constraints set up between them. + Fixed bug in unit of work whereby a joined-inheritance + subclass could insert the row for the "sub" table + before the parent table, if the two tables had no + ForeignKey constraints set up between them. .. change:: :tags: feature, postgresql |