mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 03:58:06 +03:00
Use topological orders for initial sync timeline
This commit is contained in:
parent
1309b8ca97
commit
3ecaabc7fd
1 changed files with 2 additions and 2 deletions
|
@ -217,8 +217,8 @@ class StreamStore(SQLBaseStore):
|
|||
" room_id = ?"
|
||||
" AND not outlier"
|
||||
" AND stream_ordering <= ?"
|
||||
" ORDER BY stream_ordering %s LIMIT ?"
|
||||
) % (order,)
|
||||
" ORDER BY topological_ordering %s, stream_ordering %s LIMIT ?"
|
||||
) % (order, order,)
|
||||
txn.execute(sql, (room_id, to_id, limit))
|
||||
|
||||
rows = self.cursor_to_dict(txn)
|
||||
|
|
Loading…
Reference in a new issue