]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
indentation fix
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Apr 2013 20:33:40 +0000 (16:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 11 Apr 2013 20:33:40 +0000 (16:33 -0400)
doc/build/changelog/changelog_07.rst

index 94a2980f92db72d9fde3895701edfde2d7c8c380..476a4f3594c94cbe4ffbc22654e3f2a900022575 100644 (file)
       :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