From: Taavi Burns Date: Mon, 31 Dec 2012 05:32:01 +0000 (-0500) Subject: Removes garbage from the end of an example SQL query line. X-Git-Tag: rel_0_8_0~36^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59f78fbcdc87dd67d6fd14bc1627cc3c24059fb2;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Removes garbage from the end of an example SQL query line. --- diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index 4a5c30937b..a82fcf675d 100644 --- a/doc/build/orm/inheritance.rst +++ b/doc/build/orm/inheritance.rst @@ -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 ) ON `` - using ``aliased=True + FROM x JOIN (y JOIN z ON ) ON Using ``aliased=True`` instead renders it more like::