mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix deleting state groups during room purge.
And fix the tests to actually test that things got deleted.
This commit is contained in:
parent
71f3bd734f
commit
5c3363233c
@ -1633,7 +1633,20 @@ class EventsStore(
|
|||||||
return self.runInteraction("purge_room", self._purge_room_txn, room_id)
|
return self.runInteraction("purge_room", self._purge_room_txn, room_id)
|
||||||
|
|
||||||
def _purge_room_txn(self, txn, room_id):
|
def _purge_room_txn(self, txn, room_id):
|
||||||
# First delete tables which lack an index on room_id but have one on event_id
|
# First we fetch all the state groups that should be deleted, before
|
||||||
|
# we delete that information.
|
||||||
|
txn.execute(
|
||||||
|
"""
|
||||||
|
SELECT DISTINCT state_group FROM events
|
||||||
|
INNER JOIN event_to_state_groups USING(event_id)
|
||||||
|
WHERE events.room_id = ?
|
||||||
|
""",
|
||||||
|
(room_id,),
|
||||||
|
)
|
||||||
|
|
||||||
|
state_groups = [row[0] for row in txn]
|
||||||
|
|
||||||
|
# Now we delete tables which lack an index on room_id but have one on event_id
|
||||||
for table in (
|
for table in (
|
||||||
"event_auth",
|
"event_auth",
|
||||||
"event_edges",
|
"event_edges",
|
||||||
@ -1717,18 +1730,6 @@ class EventsStore(
|
|||||||
# index on them. In any case we should be clearing out 'stream' tables
|
# index on them. In any case we should be clearing out 'stream' tables
|
||||||
# periodically anyway (#5888)
|
# periodically anyway (#5888)
|
||||||
|
|
||||||
# Now we fetch all the state groups that should be deleted.
|
|
||||||
txn.execute(
|
|
||||||
"""
|
|
||||||
SELECT DISTINCT state_group FROM events
|
|
||||||
INNER JOIN event_to_state_groups USING(event_id)
|
|
||||||
WHERE events.room_id = ?
|
|
||||||
""",
|
|
||||||
(room_id,),
|
|
||||||
)
|
|
||||||
|
|
||||||
state_groups = [row[0] for row in txn]
|
|
||||||
|
|
||||||
# TODO: we could probably usefully do a bunch of cache invalidation here
|
# TODO: we could probably usefully do a bunch of cache invalidation here
|
||||||
|
|
||||||
logger.info("[purge] done")
|
logger.info("[purge] done")
|
||||||
|
@ -628,10 +628,12 @@ class PurgeRoomTestCase(unittest.HomeserverTestCase):
|
|||||||
"local_invites",
|
"local_invites",
|
||||||
"room_account_data",
|
"room_account_data",
|
||||||
"room_tags",
|
"room_tags",
|
||||||
|
"state_groups",
|
||||||
|
"state_groups_state",
|
||||||
):
|
):
|
||||||
count = self.get_success(
|
count = self.get_success(
|
||||||
self.store._simple_select_one_onecol(
|
self.store._simple_select_one_onecol(
|
||||||
table="events",
|
table=table,
|
||||||
keyvalues={"room_id": room_id},
|
keyvalues={"room_id": room_id},
|
||||||
retcol="COUNT(*)",
|
retcol="COUNT(*)",
|
||||||
desc="test_purge_room",
|
desc="test_purge_room",
|
||||||
|
Loading…
Reference in New Issue
Block a user