summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--synapse/storage/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py
index dce5a2f135..ec551b0b4f 100644
--- a/synapse/storage/state.py
+++ b/synapse/storage/state.py
@@ -85,7 +85,7 @@ class StateStore(SQLBaseStore):
 
     def _have_persisted_state_group_txn(self, txn, state_group):
         txn.execute(
-            "SELECT count(*) FROM state_groups_state WHERE state_group = ?",
+            "SELECT count(*) FROM state_groups WHERE id = ?",
             (state_group,)
         )
         row = txn.fetchone()