summary refs log tree commit diff
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <olivier@librepush.net>2019-08-30 15:39:57 +0100
committerOlivier Wilkinson (reivilibre) <olivier@librepush.net>2019-08-30 15:39:57 +0100
commitab11c0a293e3f0911dd9bdbe0c4d3d1a07fd7f3f (patch)
treeec9eb4be8c0089cdd2ef5fa9986000c7e1fe204d
parentFix incremental processor when there are no deltas. (diff)
downloadsynapse-ab11c0a293e3f0911dd9bdbe0c4d3d1a07fd7f3f.tar.xz
Whoopsies; these things come in order…
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
-rw-r--r--synapse/storage/stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py

index 1cb534f8a4..ba7c3d25e8 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py
@@ -1064,9 +1064,9 @@ class StatsStore(StateDeltasStore): WHERE ? %s stream_ordering AND stream_ordering %s ? GROUP BY room_id """ % ( + new_bytes_expression, low_comparator, high_comparator, - new_bytes_expression, ) txn.execute(sql, (low_pos, high_pos))