Only fetch with row ts and count > 1

pull/1864/head
Erik Johnston 2017-01-31 11:20:03 +00:00
parent 05b9f48ee5
commit d3169e8d28
1 changed files with 2 additions and 1 deletions

View File

@ -552,9 +552,10 @@ class DeviceStore(SQLBaseStore):
SELECT destination, user_id, max(stream_id) as stream_id
FROM device_lists_outbound_pokes
GROUP BY destination, user_id
HAVING min(ts) < ? AND count(*) > 1
"""
txn.execute(select_sql)
txn.execute(select_sql, (yesterday,))
rows = txn.fetchall()
if not rows: