From 13cc1279f83f84b02d19ed8def0fcee09e9fddb1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 2 Apr 2009 14:53:28 +0000 Subject: - Fixed bug in relation(), introduced in 0.5.3, whereby a self referential relation from a base class to a joined-table subclass would not configure correctly. --- lib/sqlalchemy/sql/util.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/sqlalchemy/sql') diff --git a/lib/sqlalchemy/sql/util.py b/lib/sqlalchemy/sql/util.py index a8de5c635..36357faf5 100644 --- a/lib/sqlalchemy/sql/util.py +++ b/lib/sqlalchemy/sql/util.py @@ -45,6 +45,7 @@ def find_join_source(clauses, join_to): return i, f else: return None, None + def find_tables(clause, check_columns=False, include_aliases=False, include_joins=False, include_selects=False): """locate Table objects within the given expression.""" -- cgit v1.2.1