diff options
author | Jonathan Ellis <jbellis@gmail.com> | 2007-07-30 22:43:05 +0000 |
---|---|---|
committer | Jonathan Ellis <jbellis@gmail.com> | 2007-07-30 22:43:05 +0000 |
commit | 030554d41b5ce16c692b037f5ee20320431cc202 (patch) | |
tree | 94515d8670d3eb89ae8c8d964f045ec4fc6ed310 /lib/sqlalchemy/databases/mssql.py | |
parent | ac541261db3c56083be2219a201a3dfc7f411987 (diff) | |
download | sqlalchemy-030554d41b5ce16c692b037f5ee20320431cc202.tar.gz |
little too happy with the copy/paste there
Diffstat (limited to 'lib/sqlalchemy/databases/mssql.py')
-rw-r--r-- | lib/sqlalchemy/databases/mssql.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/sqlalchemy/databases/mssql.py b/lib/sqlalchemy/databases/mssql.py index 52963794c..9e00f2caa 100644 --- a/lib/sqlalchemy/databases/mssql.py +++ b/lib/sqlalchemy/databases/mssql.py @@ -499,10 +499,6 @@ class MSSQLDialect(ansisql.ANSIDialect): row = c.fetchone() return row is not None - def table_names(self, connection): - sql = "SELECT tablename FROM pg_tables WHERE schemaname = 'public'" - return [row[0] for row in connection.execute(s)] - def reflecttable(self, connection, table, include_columns): import sqlalchemy.databases.information_schema as ischema |