diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-03 22:13:17 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-03 22:13:17 +0000 |
| commit | 0af3f8f35b5e46f749d328e6fae90f6ff4915e97 (patch) | |
| tree | 8773ab5842f1b3ff39a2e05a9e5fc2ea132ec680 /lib/sqlalchemy/engine | |
| parent | 784eaa108a543602e4e7ad42828e8720106fd26d (diff) | |
| download | sqlalchemy-0af3f8f35b5e46f749d328e6fae90f6ff4915e97.tar.gz | |
- rewritten ClauseAdapter merged from the eager_minus_join branch; this is a much simpler
and "correct" version which will copy all elements exactly once, except for those which were
replaced with target elements. It also can match a wider variety of target elements including
joins and selects on identity alone.
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 660d54604..bd82f897d 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -891,7 +891,7 @@ class Connection(Connectable): executors = { expression._Function : _execute_function, expression.ClauseElement : _execute_clauseelement, - visitors.ClauseVisitor : _execute_compiled, + Compiled : _execute_compiled, schema.SchemaItem:_execute_default, str.__mro__[-2] : _execute_text } |
