]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
little too happy with the copy/paste there
authorJonathan Ellis <jbellis@gmail.com>
Mon, 30 Jul 2007 22:43:05 +0000 (22:43 +0000)
committerJonathan Ellis <jbellis@gmail.com>
Mon, 30 Jul 2007 22:43:05 +0000 (22:43 +0000)
lib/sqlalchemy/databases/mssql.py

index 52963794c7df34bac955741fc4f30c6757b95b19..9e00f2caa9e444b93cc9d3a8b65abcf619af2d8e 100644 (file)
@@ -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