From: Mike Bayer Date: Sat, 5 Nov 2005 06:37:12 +0000 (+0000) Subject: (no commit message) X-Git-Tag: rel_0_1_0~370 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9145e077431635bdc5b840019dba29bbca1214ff;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git --- diff --git a/lib/sqlalchemy/databases/postgres.py b/lib/sqlalchemy/databases/postgres.py index 3515c5e7af..a3a84c7428 100644 --- a/lib/sqlalchemy/databases/postgres.py +++ b/lib/sqlalchemy/databases/postgres.py @@ -286,9 +286,6 @@ class PGSQLEngine(ansisql.ANSISQLEngine): table.c[constrained_column].foreign_key = schema.ForeignKey(remotetable.c[referred_column]) class PGCompiler(ansisql.ANSICompiler): - def bindparam_string(self, name): - return "%(" + name + ")s" - def visit_insert(self, insert): """inserts are required to have the primary keys be explicitly present. mapper will by default not put them in the insert statement to comply