summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/postgres.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-08-21 03:51:48 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-08-21 03:51:48 +0000
commit435f7b1c381c6f8af34c1ca97d42e333d2b40f7c (patch)
tree4e74ad773f8151aafb471a42be35a782dba4f570 /lib/sqlalchemy/databases/postgres.py
parentec9bc800dc2b5bce01337945a6b08e43f54fe438 (diff)
downloadsqlalchemy-435f7b1c381c6f8af34c1ca97d42e333d2b40f7c.tar.gz
postgres reflection uses dialect-wide preparer
Diffstat (limited to 'lib/sqlalchemy/databases/postgres.py')
-rw-r--r--lib/sqlalchemy/databases/postgres.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py
index 1ce10dd4c..887c593e1 100644
--- a/lib/sqlalchemy/databases/postgres.py
+++ b/lib/sqlalchemy/databases/postgres.py
@@ -307,7 +307,7 @@ class PGDialect(ansisql.ANSIDialect):
if self.use_information_schema:
ischema.reflecttable(connection, table, ischema_names)
else:
- preparer = self.preparer()
+ preparer = self.identifier_preparer
if table.schema is not None:
current_schema = table.schema
else: