forked from MirrorHub/synapse
Create new index concurrently
This commit is contained in:
parent
aa7b890cfe
commit
03a98aff3c
1 changed files with 1 additions and 1 deletions
|
@ -820,7 +820,7 @@ class StateStore(SQLBaseStore):
|
||||||
def reindex_txn(txn):
|
def reindex_txn(txn):
|
||||||
if isinstance(self.database_engine, PostgresEngine):
|
if isinstance(self.database_engine, PostgresEngine):
|
||||||
txn.execute(
|
txn.execute(
|
||||||
"CREATE INDEX state_groups_state_type_idx"
|
"CREATE INDEX CONCURRENTLY state_groups_state_type_idx"
|
||||||
" ON state_groups_state(state_group, type, state_key)"
|
" ON state_groups_state(state_group, type, state_key)"
|
||||||
)
|
)
|
||||||
txn.execute(
|
txn.execute(
|
||||||
|
|
Loading…
Reference in a new issue