diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-02-11 15:43:05 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-02-11 15:43:05 -0500 |
| commit | 0634ea79b1a23a8b88c886a8a3f434ed300691e2 (patch) | |
| tree | 68aa780526e321f55b9215544aa409cb1c9179c7 /lib/sqlalchemy/orm/util.py | |
| parent | 7d693180be8c7f9db79831351751a15d786b86a7 (diff) | |
| download | sqlalchemy-0634ea79b1a23a8b88c886a8a3f434ed300691e2.tar.gz | |
many fixes but still can't get heuristics to work as well as what's existing,
tests still failing
Diffstat (limited to 'lib/sqlalchemy/orm/util.py')
| -rw-r--r-- | lib/sqlalchemy/orm/util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/orm/util.py b/lib/sqlalchemy/orm/util.py index f17f675f4..aaff6ce4a 100644 --- a/lib/sqlalchemy/orm/util.py +++ b/lib/sqlalchemy/orm/util.py @@ -379,6 +379,9 @@ def _orm_deannotate(element): values=("_orm_adapt", "parententity") ) +def _orm_full_deannotate(element): + return sql_util._deep_deannotate(element) + class _ORMJoin(expression.Join): """Extend Join to support ORM constructs as input.""" |
