Fix error when using synapse_port_db on a vanilla synapse db (#6449)

This commit is contained in:
Andrew Morgan 2019-12-04 12:17:47 +00:00 committed by GitHub
commit 85901939c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

1
changelog.d/6449.bugfix Normal file
View File

@ -0,0 +1 @@
Fix error when using synapse_port_db on a vanilla synapse db.

View File

@ -782,7 +782,10 @@ class Porter(object):
def _setup_state_group_id_seq(self):
def r(txn):
txn.execute("SELECT MAX(id) FROM state_groups")
next_id = txn.fetchone()[0] + 1
curr_id = txn.fetchone()[0]
if not curr_id:
return
next_id = curr_id + 1
txn.execute("ALTER SEQUENCE state_group_id_seq RESTART WITH %s", (next_id,))
return self.postgres_store.runInteraction("setup_state_group_id_seq", r)