Fix SQL to supply arguments in the same order

pull/4/merge
Mark Haines 8 years ago
parent 0a7d3cd00f
commit 8dad08a950
  1. 2
      synapse/storage/event_push_actions.py

@ -272,8 +272,8 @@ class EventPushActionsStore(SQLBaseStore):
" AND ep.stream_ordering > rl.stream_ordering"
" )"
" )"
" AND ep.stream_ordering > ?"
" AND ep.user_id = ?"
" AND ep.stream_ordering > ?"
" AND ep.stream_ordering <= ?"
" ORDER BY ep.stream_ordering DESC LIMIT ?"
)

Loading…
Cancel
Save