summary refs log tree commit diff
path: root/synapse/storage/engines/postgres.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-05-05 15:00:30 +0100
committerErik Johnston <erik@matrix.org>2015-05-05 15:00:30 +0100
commit1692dc019d803287047b16beda92fec4f1934622 (patch)
treea2d3f6455d43cca97f92b7b64d3ad0fb07b990d3 /synapse/storage/engines/postgres.py
parentCorrectly name transaction (diff)
downloadsynapse-1692dc019d803287047b16beda92fec4f1934622.tar.xz
Don't call 'encode_parameter' no-op
Diffstat (limited to 'synapse/storage/engines/postgres.py')
-rw-r--r--synapse/storage/engines/postgres.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/storage/engines/postgres.py b/synapse/storage/engines/postgres.py

index 64e34265f6..a323028546 100644 --- a/synapse/storage/engines/postgres.py +++ b/synapse/storage/engines/postgres.py
@@ -36,9 +36,6 @@ class PostgresEngine(object): def convert_param_style(self, sql): return sql.replace("?", "%s") - def encode_parameter(self, param): - return param - def on_new_connection(self, db_conn): db_conn.set_isolation_level( self.module.extensions.ISOLATION_LEVEL_REPEATABLE_READ