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

Comment

parent 320408ef
Branches
Tags
No related merge requests found
...@@ -252,6 +252,8 @@ class SearchStore(BackgroundUpdateStore): ...@@ -252,6 +252,8 @@ class SearchStore(BackgroundUpdateStore):
" WHERE vector @@ query AND room_id = ?" " WHERE vector @@ query AND room_id = ?"
) )
elif isinstance(self.database_engine, Sqlite3Engine): elif isinstance(self.database_engine, Sqlite3Engine):
# We use CROSS JOIN here to ensure we use the right indexes.
# https://sqlite.org/optoverview.html#crossjoin
sql = ( sql = (
"SELECT rank(matchinfo) as rank, room_id, event_id," "SELECT rank(matchinfo) as rank, room_id, event_id,"
" topological_ordering, stream_ordering" " topological_ordering, stream_ordering"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment