summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/postgres.py
diff options
context:
space:
mode:
authorJonathan Ellis <jbellis@gmail.com>2007-07-29 04:15:14 +0000
committerJonathan Ellis <jbellis@gmail.com>2007-07-29 04:15:14 +0000
commita9a1f912fd9445d7496584a256e449ad1fd2a808 (patch)
tree665b8e937cd5811119f5ce8faa9e844e61190b9e /lib/sqlalchemy/databases/postgres.py
parentc838a981021b83f5690234b1d55513417306ac61 (diff)
downloadsqlalchemy-a9a1f912fd9445d7496584a256e449ad1fd2a808.tar.gz
engine.table_names()
tested vs sqlite and pg. mssql should also be ok (uses ischema like pg.) others are best-guess based on has_table code.
Diffstat (limited to 'lib/sqlalchemy/databases/postgres.py')
-rw-r--r--lib/sqlalchemy/databases/postgres.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py
index b192c4778..697ca8d15 100644
--- a/lib/sqlalchemy/databases/postgres.py
+++ b/lib/sqlalchemy/databases/postgres.py
@@ -334,6 +334,9 @@ class PGDialect(ansisql.ANSIDialect):
return "losed the connection unexpectedly" in str(e)
else:
return False
+
+ def table_names(self, connection, schema):
+ return ischema.table_names(connection, schema)
def reflecttable(self, connection, table, include_columns):
if self.use_information_schema: