mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
Fix query performance for /sync (#12745)
This commit is contained in:
parent
6f04ae7033
commit
4ea546067d
2 changed files with 2 additions and 1 deletions
1
changelog.d/12745.bugfix
Normal file
1
changelog.d/12745.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix DB performance regression introduced in v1.59.0rc2.
|
|
@ -750,7 +750,7 @@ class StreamWorkerStore(EventsWorkerStore, SQLBaseStore):
|
|||
WHERE room_id = ?
|
||||
AND stream_ordering <= ?
|
||||
AND NOT outlier
|
||||
AND rejections.reason IS NULL
|
||||
AND rejections.event_id IS NULL
|
||||
ORDER BY stream_ordering DESC
|
||||
LIMIT 1
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue