Skip to content
Snippets Groups Projects
Commit 64c65669 authored by Erik Johnston's avatar Erik Johnston
Browse files

Remove spurious comment

parent 8fd4d912
No related branches found
No related tags found
No related merge requests found
......@@ -151,13 +151,13 @@ class SearchStore(BackgroundUpdateStore):
conn.set_session(autocommit=True)
c = conn.cursor()
# We create with NULLS FIRST so that when we search *backwards*
# we get the ones with non null origin_server_ts *first*
c.execute(
"CREATE INDEX CONCURRENTLY event_search_fts_idx_gist"
" ON event_search USING GIST (vector)"
)
c.execute("DROP INDEX event_search_fts_idx")
conn.set_session(autocommit=False)
if isinstance(self.database_engine, PostgresEngine):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment