diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-07-29 19:49:46 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2008-07-29 19:49:46 +0000 |
| commit | 449b33e0590fb40a34222718326b189429d622ae (patch) | |
| tree | 9ae13b01ad6ee731a36538dee316a0f26974d91c /lib/sqlalchemy/engine | |
| parent | fd51706903dea8336be5a77f5fe5ed2d41d0a466 (diff) | |
| download | sqlalchemy-449b33e0590fb40a34222718326b189429d622ae.tar.gz | |
relation.order_by requires _literal_as_column conversion as well
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 18e816546..41e191312 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -16,7 +16,6 @@ import inspect, StringIO from sqlalchemy import exc, schema, util, types, log from sqlalchemy.sql import expression - class Dialect(object): """Define the behavior of a specific database and DB-API combination. @@ -1497,7 +1496,6 @@ class ResultProxy(object): def _create_key_cache(self): # local copies to avoid circular ref against 'self' props = self.__props - context = self.context def lookup_key(key): """Given a key, which could be a ColumnElement, string, etc., matches it to the appropriate key we got from the result set's |
