]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
imports
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 25 Jan 2014 21:37:49 +0000 (16:37 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 25 Jan 2014 21:37:49 +0000 (16:37 -0500)
lib/sqlalchemy/sql/expression.py

index 5e5272b50700c6a01d37a5fc8e8f9affaa5f71bf..d5f53a2605781f17a7dab365db3bf49043791edf 100644 (file)
@@ -3068,6 +3068,8 @@ class FromClause(Selectable):
 
         E.g.::
 
+            from sqlalchemy import join
+
             j = user_table.join(address_table,
                             user_table.c.id == address_table.c.user_id)
             stmt = select([user_table]).select_from(j)
@@ -3105,6 +3107,8 @@ class FromClause(Selectable):
 
         E.g.::
 
+            from sqlalchemy import outerjoin
+
             j = user_table.outerjoin(address_table,
                             user_table.c.id == address_table.c.user_id)