diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-09-14 12:01:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-14 12:01:42 -0400 |
commit | f2d12ccabef17faa0bf6b34fbb6d944849afc4d4 (patch) | |
tree | 7c2f3f79c1b250506b3376ac882aaf677df624e6 /synapse/storage/databases | |
parent | Deduplicate `is_server_notices_room`. (#13780) (diff) | |
download | synapse-f2d12ccabef17faa0bf6b34fbb6d944849afc4d4.tar.xz |
Use partial indices on SQLIte. (#13802)
Partial indices have been supported since SQLite 3.8, but Synapse now requires >= 3.27, so we can enable support for them. This requires rebuilding previous indices which were partial on PostgreSQL, but not on SQLite.
Diffstat (limited to 'synapse/storage/databases')
-rw-r--r-- | synapse/storage/databases/main/event_push_actions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/event_push_actions.py b/synapse/storage/databases/main/event_push_actions.py index f4a07de2a3..3a3fb8c507 100644 --- a/synapse/storage/databases/main/event_push_actions.py +++ b/synapse/storage/databases/main/event_push_actions.py @@ -1255,7 +1255,6 @@ class EventPushActionsStore(EventPushActionsWorkerStore): table="event_push_actions", columns=["highlight", "stream_ordering"], where_clause="highlight=0", - psql_only=True, ) async def get_push_actions_for_user( |