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 /changelog.d | |
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 'changelog.d')
-rw-r--r-- | changelog.d/13802.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/13802.misc b/changelog.d/13802.misc new file mode 100644 index 0000000000..0d55071326 --- /dev/null +++ b/changelog.d/13802.misc @@ -0,0 +1 @@ +Use partial indices on SQLite. |