]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 5 Nov 2005 06:37:12 +0000 (06:37 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 5 Nov 2005 06:37:12 +0000 (06:37 +0000)
lib/sqlalchemy/databases/postgres.py

index 3515c5e7af89b1ec93beee4a0b82af3cf51937eb..a3a84c742879d47078ad6407733e5bcaefc609fe 100644 (file)
@@ -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