mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-06 08:34:12 -04:00
Merge remote-tracking branch 'origin/develop' into dbkr/pushers_use_event_actions
This commit is contained in:
commit
9c99ab4572
32 changed files with 774 additions and 200 deletions
|
@ -1148,7 +1148,7 @@ class EventsStore(SQLBaseStore):
|
|||
upper_bound = current_forward_id
|
||||
|
||||
sql = (
|
||||
"SELECT -event_stream_ordering FROM current_state_resets"
|
||||
"SELECT event_stream_ordering FROM current_state_resets"
|
||||
" WHERE ? < event_stream_ordering"
|
||||
" AND event_stream_ordering <= ?"
|
||||
" ORDER BY event_stream_ordering ASC"
|
||||
|
@ -1157,7 +1157,7 @@ class EventsStore(SQLBaseStore):
|
|||
state_resets = txn.fetchall()
|
||||
|
||||
sql = (
|
||||
"SELECT -event_stream_ordering, event_id, state_group"
|
||||
"SELECT event_stream_ordering, event_id, state_group"
|
||||
" FROM ex_outlier_stream"
|
||||
" WHERE ? > event_stream_ordering"
|
||||
" AND event_stream_ordering >= ?"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue