From: Jonathan Ellis Date: Mon, 30 Jul 2007 22:43:05 +0000 (+0000) Subject: little too happy with the copy/paste there X-Git-Tag: rel_0_4beta1~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=030554d41b5ce16c692b037f5ee20320431cc202;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git little too happy with the copy/paste there --- diff --git a/lib/sqlalchemy/databases/mssql.py b/lib/sqlalchemy/databases/mssql.py index 52963794c7..9e00f2caa9 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