mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 10:46:06 -04:00
Order 'get_recent_events_for_room' correctly.
This commit is contained in:
parent
95839212a7
commit
be6abdff19
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ class StreamStore(SQLBaseStore):
|
|||
sql = (
|
||||
"SELECT * FROM events "
|
||||
"WHERE room_id = ? AND stream_ordering <= ? "
|
||||
"ORDER BY topological_ordering, stream_ordering DESC LIMIT ? "
|
||||
"ORDER BY topological_ordering DESC, stream_ordering DESC LIMIT ? "
|
||||
)
|
||||
|
||||
rows = yield self._execute_and_decode(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue