Fix query performance for /sync (#12745)
parent
6f04ae7033
commit
4ea546067d
|
@ -0,0 +1 @@
|
||||||
|
Fix DB performance regression introduced in v1.59.0rc2.
|
|
@ -750,7 +750,7 @@ class StreamWorkerStore(EventsWorkerStore, SQLBaseStore):
|
||||||
WHERE room_id = ?
|
WHERE room_id = ?
|
||||||
AND stream_ordering <= ?
|
AND stream_ordering <= ?
|
||||||
AND NOT outlier
|
AND NOT outlier
|
||||||
AND rejections.reason IS NULL
|
AND rejections.event_id IS NULL
|
||||||
ORDER BY stream_ordering DESC
|
ORDER BY stream_ordering DESC
|
||||||
LIMIT 1
|
LIMIT 1
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue