summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r--lib/sqlalchemy/sql.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py
index 039e3cd76..2cb7d17ba 100644
--- a/lib/sqlalchemy/sql.py
+++ b/lib/sqlalchemy/sql.py
@@ -768,6 +768,8 @@ class Select(Selectable):
for r in fromclause._get_from_objects():
self.froms[r.id] = r
+ def append_join(self, joinon, right, whereclause, **params):
+ self.append_from(self.froms[joinon], right, whereclause, **params)
def append_clause(self, keyword, clause):
if type(clause) == str: