forked from MirrorHub/synapse
fix comedy important missing comma breaking recent-ordered FTS on sqlite
This commit is contained in:
parent
767c20a869
commit
dd40fb68e4
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class SearchStore(SQLBaseStore):
|
|||
)
|
||||
elif isinstance(self.database_engine, Sqlite3Engine):
|
||||
sql = (
|
||||
"SELECT rank(matchinfo(event_search)) as rank, room_id, event_id"
|
||||
"SELECT rank(matchinfo(event_search)) as rank, room_id, event_id,"
|
||||
" topological_ordering, stream_ordering"
|
||||
" FROM event_search"
|
||||
" NATURAL JOIN events"
|
||||
|
|
Loading…
Reference in a new issue