summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-04-17 01:15:19 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-04-17 01:15:19 +0000
commit08c003ec000df4db6f1dd03cd45563ac5f8f5957 (patch)
tree9ab11d670b4b0207168eff086065dbda17b2ca6f /lib/sqlalchemy/sql.py
parent0542d35f391f15e729483c3c9123158ba0923404 (diff)
downloadsqlalchemy-08c003ec000df4db6f1dd03cd45563ac5f8f5957.tar.gz
added _get_from_obj to TypeClause
Diffstat (limited to 'lib/sqlalchemy/sql.py')
-rw-r--r--lib/sqlalchemy/sql.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sqlalchemy/sql.py b/lib/sqlalchemy/sql.py
index b18b0916e..02e1619a1 100644
--- a/lib/sqlalchemy/sql.py
+++ b/lib/sqlalchemy/sql.py
@@ -702,7 +702,8 @@ class TypeClause(ClauseElement):
self.type = type
def accept_visitor(self, visitor):
visitor.visit_typeclause(self)
-
+ def _get_from_objects(self):
+ return []
class TextClause(ClauseElement):
"""represents literal a SQL text fragment. public constructor is the
text() function.