diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-04-14 01:39:00 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-04-14 01:39:00 +0000 |
commit | 253f2a92e348cf393c373b9d20b11d20133aacc4 (patch) | |
tree | ca5860031f4a2e3936e40c50ee628bcf0d79f852 /lib/sqlalchemy/sql.py | |
parent | bb1ec10f3a6b0932d8d6aa92027b40374db9943f (diff) | |
download | sqlalchemy-253f2a92e348cf393c373b9d20b11d20133aacc4.tar.gz |
didnt need that method...
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r-- | lib/sqlalchemy/sql.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py index 450653e39..d912ca176 100644 --- a/lib/sqlalchemy/sql.py +++ b/lib/sqlalchemy/sql.py @@ -2090,16 +2090,6 @@ class _ColumnClause(ColumnElement): def accept_visitor(self, visitor): visitor.visit_column(self) - def to_selectable(self, selectable): - """Given a ``Selectable``, return this column's equivalent in - that ``Selectable``, if any. - - For example, this could translate the column *name* from a - ``Table`` object to an ``Alias`` of a ``Select`` off of that - ``Table`` object.""" - - return selectable.corresponding_column(self.original, False) - def _get_from_objects(self): if self.table is not None: return [self.table] |