diff options
author | Taavi Burns <taavi.burns@gmail.com> | 2012-12-31 00:32:01 -0500 |
---|---|---|
committer | Taavi Burns <taavi.burns@gmail.com> | 2012-12-31 00:32:01 -0500 |
commit | 59f78fbcdc87dd67d6fd14bc1627cc3c24059fb2 (patch) | |
tree | d28faacf3de49961f3fb7ce49bae9b995edca9e7 | |
parent | 3657f2122477c7d871467a2a4e9b8897a49c5942 (diff) | |
download | sqlalchemy-59f78fbcdc87dd67d6fd14bc1627cc3c24059fb2.tar.gz |
Removes garbage from the end of an example SQL query line.
-rw-r--r-- | doc/build/orm/inheritance.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/orm/inheritance.rst b/doc/build/orm/inheritance.rst index 4a5c30937..a82fcf675 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 <onclause>) ON <onclause>`` - using ``aliased=True + FROM x JOIN (y JOIN z ON <onclause>) ON <onclause> Using ``aliased=True`` instead renders it more like:: |