mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Simplify delete_forward_extremities_for_room_txn SQL
As per feedback. Signed-off-by: Jason Robinson <jasonr@matrix.org>
This commit is contained in:
parent
da16d06301
commit
49c619a9a2
@ -35,17 +35,11 @@ class EventForwardExtremitiesStore(SQLBaseStore):
|
||||
def delete_forward_extremities_for_room_txn(txn):
|
||||
# First we need to get the event_id to not delete
|
||||
sql = """
|
||||
SELECT
|
||||
last_value(event_id) OVER w AS event_id
|
||||
FROM event_forward_extremities
|
||||
NATURAL JOIN events
|
||||
SELECT event_id FROM event_forward_extremities
|
||||
INNER JOIN events USING (room_id, event_id)
|
||||
WHERE room_id = ?
|
||||
WINDOW w AS (
|
||||
PARTITION BY room_id
|
||||
ORDER BY stream_ordering
|
||||
range between unbounded preceding and unbounded following
|
||||
)
|
||||
ORDER BY stream_ordering
|
||||
ORDER BY stream_ordering DESC
|
||||
LIMIT 1
|
||||
"""
|
||||
txn.execute(sql, (room_id,))
|
||||
rows = txn.fetchall()
|
||||
|
Loading…
Reference in New Issue
Block a user