diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-07-16 10:58:12 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-07-16 11:25:08 +0100 |
commit | 3c36ae17a53987ed1ba40910f548d759883ab20a (patch) | |
tree | b50c45f8fa824a982034698188e9fec11b3c20c7 /synapse/storage/engines/postgres.py | |
parent | Use `PostgresSequenceGenerator` from `MultiWriterIdGenerator` (diff) | |
download | synapse-3c36ae17a53987ed1ba40910f548d759883ab20a.tar.xz |
Use SequenceGenerator for state group ID allocation
Diffstat (limited to 'synapse/storage/engines/postgres.py')
-rw-r--r-- | synapse/storage/engines/postgres.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/synapse/storage/engines/postgres.py b/synapse/storage/engines/postgres.py index a31588080d..ff39281f85 100644 --- a/synapse/storage/engines/postgres.py +++ b/synapse/storage/engines/postgres.py @@ -154,12 +154,6 @@ class PostgresEngine(BaseDatabaseEngine): def lock_table(self, txn, table): txn.execute("LOCK TABLE %s in EXCLUSIVE MODE" % (table,)) - def get_next_state_group_id(self, txn): - """Returns an int that can be used as a new state_group ID - """ - txn.execute("SELECT nextval('state_group_id_seq')") - return txn.fetchone()[0] - @property def server_version(self): """Returns a string giving the server version. For example: '8.1.5' |