From 9a2a2dfc7ac91770227fd2c420b126e745c5d3f1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 23 Oct 2005 20:40:22 +0000 Subject: --- lib/sqlalchemy/databases/postgres.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/sqlalchemy/databases/postgres.py') diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py index f3648e69c..000f403f1 100644 --- a/lib/sqlalchemy/databases/postgres.py +++ b/lib/sqlalchemy/databases/postgres.py @@ -90,8 +90,8 @@ class PGSQLEngine(ansisql.ANSISQLEngine): def last_inserted_ids(self): return self.context.last_inserted_ids - def compiler(self, statement, bindparams): - return PGCompiler(self, statement, bindparams) + def compiler(self, statement, bindparams, **kwargs): + return PGCompiler(self, statement, bindparams, **kwargs) def schemagenerator(self, proxy, **params): return PGSchemaGenerator(proxy, **params) -- cgit v1.2.1