diff options
author | Erik Johnston <erik@matrix.org> | 2021-06-30 12:07:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 12:07:16 +0100 |
commit | 329ef5c715d81b538e8b071de046c698a82eae10 (patch) | |
tree | 69b4853a47342f7a42c3ef493cc99be7ccbd044d /synapse/storage/engines/postgres.py | |
parent | Merge branch 'release-v1.37' into develop (diff) | |
download | synapse-329ef5c715d81b538e8b071de046c698a82eae10.tar.xz |
Fix the inbound PDU metric (#10279)
This broke in #10272
Diffstat (limited to 'synapse/storage/engines/postgres.py')
-rw-r--r-- | synapse/storage/engines/postgres.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/storage/engines/postgres.py b/synapse/storage/engines/postgres.py index 21411c5fea..30f948a0f7 100644 --- a/synapse/storage/engines/postgres.py +++ b/synapse/storage/engines/postgres.py @@ -133,6 +133,11 @@ class PostgresEngine(BaseDatabaseEngine): """Do we support using `a = ANY(?)` and passing a list""" return True + @property + def supports_returning(self) -> bool: + """Do we support the `RETURNING` clause in insert/update/delete?""" + return True + def is_deadlock(self, error): if isinstance(error, self.module.DatabaseError): # https://www.postgresql.org/docs/current/static/errcodes-appendix.html |