summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/schema.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-10-17 02:09:31 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-10-17 02:09:31 +0000
commit4afd2a555e348db33fad3a01ee4b8a3698473eb2 (patch)
tree268355ecd324c9e1d44eb1bb09613c942169df64 /lib/sqlalchemy/schema.py
parent180d3741997c1471b9199334d6076e45cd581d62 (diff)
downloadsqlalchemy-4afd2a555e348db33fad3a01ee4b8a3698473eb2.tar.gz
ok, TableClause should be public
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r--lib/sqlalchemy/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py
index ebdecc77a..dd11f6e80 100644
--- a/lib/sqlalchemy/schema.py
+++ b/lib/sqlalchemy/schema.py
@@ -150,7 +150,7 @@ class _TableSingleton(type):
return table
-class Table(SchemaItem, sql._TableClause):
+class Table(SchemaItem, sql.TableClause):
"""represents a relational database table. This subclasses sql.TableClause to provide
a table that is "wired" to an engine. Whereas TableClause represents a table as its
used in a SQL expression, Table represents a table as its created in the database.