mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-13 11:59:26 -05:00
Fix _delete_old_forward_extrem_cache query
This commit is contained in:
parent
6f0c5e5d9b
commit
0b78d8adf2
@ -398,12 +398,11 @@ class EventFederationStore(SQLBaseStore):
|
|||||||
sql = ("""
|
sql = ("""
|
||||||
DELETE FROM stream_ordering_to_exterm
|
DELETE FROM stream_ordering_to_exterm
|
||||||
WHERE
|
WHERE
|
||||||
(
|
room_id IN (
|
||||||
SELECT max(stream_ordering) AS stream_ordering
|
SELECT room_id AS stream_ordering
|
||||||
FROM stream_ordering_to_exterm
|
FROM stream_ordering_to_exterm
|
||||||
WHERE room_id = stream_ordering_to_exterm.room_id
|
WHERE stream_ordering > ?
|
||||||
) > ?
|
) AND stream_ordering < ?
|
||||||
AND stream_ordering < ?
|
|
||||||
""")
|
""")
|
||||||
txn.execute(
|
txn.execute(
|
||||||
sql,
|
sql,
|
||||||
|
Loading…
Reference in New Issue
Block a user