0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-23 03:29:07 +02:00

Expand comment

This commit is contained in:
Erik Johnston 2015-11-12 15:33:47 +00:00
parent 764e79d051
commit 8fd8e72cec

View file

@ -254,6 +254,12 @@ class SearchStore(BackgroundUpdateStore):
elif isinstance(self.database_engine, Sqlite3Engine):
# We use CROSS JOIN here to ensure we use the right indexes.
# https://sqlite.org/optoverview.html#crossjoin
#
# We want to use the full text search index on event_search to
# extract all possible matches first, then lookup those matches
# in the events table to get the topological ordering. We need
# to use the indexes in this order because sqlite refuses to
# MATCH unless it uses the full text search index
sql = (
"SELECT rank(matchinfo) as rank, room_id, event_id,"
" topological_ordering, stream_ordering"