diff options
author | Richard van der Hoff <richard@matrix.org> | 2021-04-08 13:45:19 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2021-04-08 16:42:32 +0100 |
commit | 3ada9b42640137d908fa2db64e78f3f79d11dd3a (patch) | |
tree | f27106f38f792717c64eb1b885fbed49f5a6ae30 /synapse/storage/engines/postgres.py | |
parent | Require py36 and Postgres 9.6 (diff) | |
download | synapse-3ada9b42640137d908fa2db64e78f3f79d11dd3a.tar.xz |
Drop support for sqlite<3.22 as well
Diffstat (limited to 'synapse/storage/engines/postgres.py')
-rw-r--r-- | synapse/storage/engines/postgres.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/synapse/storage/engines/postgres.py b/synapse/storage/engines/postgres.py index d95f88b3e9..dba8cc51d3 100644 --- a/synapse/storage/engines/postgres.py +++ b/synapse/storage/engines/postgres.py @@ -130,13 +130,6 @@ class PostgresEngine(BaseDatabaseEngine): return True @property - def supports_tuple_comparison(self): - """ - Do we support comparing tuples, i.e. `(a, b) > (c, d)`? - """ - return True - - @property def supports_using_any_list(self): """Do we support using `a = ANY(?)` and passing a list""" return True |