0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 08:28:19 +02:00

Max is not a function

This commit is contained in:
Erik Johnston 2016-01-29 14:42:01 +00:00
parent f67d60496a
commit 45488e0ffa

View file

@ -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"