diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-01-09 16:55:51 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-01-09 16:55:51 +0000 |
commit | a66f489678dc05fa89e6849405c37a9a390e62fc (patch) | |
tree | 404debd1e308eae3a4d7e1eccd9a1dc21d5e4589 /synapse/storage/schema/delta/38 | |
parent | switch back from GIST to GIN indexes (diff) | |
download | synapse-a66f489678dc05fa89e6849405c37a9a390e62fc.tar.xz |
fix GIST->GIN switch
Diffstat (limited to 'synapse/storage/schema/delta/38')
-rw-r--r-- | synapse/storage/schema/delta/38/postgres_fts_gist.sql | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/storage/schema/delta/38/postgres_fts_gist.sql b/synapse/storage/schema/delta/38/postgres_fts_gist.sql index f090a7b75a..5fe27d6877 100644 --- a/synapse/storage/schema/delta/38/postgres_fts_gist.sql +++ b/synapse/storage/schema/delta/38/postgres_fts_gist.sql @@ -13,5 +13,7 @@ * limitations under the License. */ - INSERT into background_updates (update_name, progress_json) - VALUES ('event_search_postgres_gist', '{}'); +-- We no longer do this given we back it out again in schema 46 + +-- INSERT into background_updates (update_name, progress_json) +-- VALUES ('event_search_postgres_gist', '{}'); |