diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-11-30 18:44:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 18:44:09 +0000 |
commit | f8d13ca13d9dd0c669a2a1b5bc390d7830c89239 (patch) | |
tree | 3dbcdf800105b9c41a3c854f7209d017224011ea /synapse/storage/databases/main/schema | |
parent | Add a config option to change whether unread push notification counts are per... (diff) | |
download | synapse-f8d13ca13d9dd0c669a2a1b5bc390d7830c89239.tar.xz |
Drop (almost) unused index on event_json (#8845)
Diffstat (limited to 'synapse/storage/databases/main/schema')
-rw-r--r-- | synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql b/synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql new file mode 100644 index 0000000000..8a39d54aed --- /dev/null +++ b/synapse/storage/databases/main/schema/delta/58/24drop_event_json_index.sql @@ -0,0 +1,19 @@ +/* Copyright 2020 The Matrix.org Foundation C.I.C + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +-- this index is essentially redundant. The only time it was ever used was when purging +-- rooms - and Synapse 1.24 will change that. + +DROP INDEX IF EXISTS event_json_room_id; |