diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-29 14:42:01 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-29 14:42:01 +0000 |
commit | 45488e0ffae5100c3a82568642736aff203e1602 (patch) | |
tree | ed3fa7155ad62da81ce66635607d0db694980783 /synapse | |
parent | Convert param style (diff) | |
download | synapse-45488e0ffae5100c3a82568642736aff203e1602.tar.xz |
Max is not a function
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 2ed505cb1e..4d374a8b07 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -148,7 +148,7 @@ class DataStore(RoomMemberStore, RoomStore, def _get_cache_dict(self, db_conn, table, entity_column, stream_column, max_value): sql = ( "SELECT %(entity)s, MAX(%(stream)s) FROM %(table)s" - " WHERE %(stream)s > max(? - 100000, 0)" + " WHERE %(stream)s > ? - 100000" " GROUP BY %(entity)s" " ORDER BY MAX(%(stream)s) DESC" " LIMIT 10000" |