]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Removes garbage from the end of an example SQL query line.
authorTaavi Burns <taavi.burns@gmail.com>
Mon, 31 Dec 2012 05:32:01 +0000 (00:32 -0500)
committerTaavi Burns <taavi.burns@gmail.com>
Mon, 31 Dec 2012 05:32:01 +0000 (00:32 -0500)
doc/build/orm/inheritance.rst

index 4a5c30937b363c15b883c2a4bf15648a2937ac87..a82fcf675d11ee08c0658f9087d2755589126cdb 100644 (file)
@@ -419,7 +419,7 @@ so that the right hand side of the join between ``Company`` and ``manager_and_en
 is converted into an aliased subquery.  Some backends, such as SQLite and older
 versions of MySQL can't handle a FROM clause of the following form::
 
-    FROM x JOIN (y JOIN z ON <onclause>) ON <onclause>`` - using ``aliased=True
+    FROM x JOIN (y JOIN z ON <onclause>) ON <onclause>
 
 Using ``aliased=True`` instead renders it more like::