]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
made this easier to read
authorChris Withers <chris@simplistix.co.uk>
Fri, 9 Apr 2010 17:02:06 +0000 (18:02 +0100)
committerChris Withers <chris@simplistix.co.uk>
Fri, 9 Apr 2010 17:02:06 +0000 (18:02 +0100)
doc/build/mappers.rst

index 7e320c26a05ef35bd57ee602449a89e3b626efce..81d67f2178f76e3bf4499fd3b3fcdfd134f54f45 100644 (file)
@@ -477,7 +477,9 @@ It also accepts a second argument ``selectable`` which replaces the automatic jo
     # custom selectable
     query.with_polymorphic([Engineer, Manager], employees.outerjoin(managers).outerjoin(engineers))
 
-:func:`~sqlalchemy.orm.query.Query.with_polymorphic` is also needed when you wish to add filter criterion that is specific to one or more subclasses, so that those columns are available to the WHERE clause:
+:func:`~sqlalchemy.orm.query.Query.with_polymorphic` is also needed
+when you wish to add filter criteria that are specific to one or more
+subclasses; It makes the subclasses' columns available to the WHERE clause:
 
 .. sourcecode:: python+sql