mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 04:03:51 +01:00
Comment on the LIMIT 500
This commit is contained in:
parent
22a8c91448
commit
73260ad01f
1 changed files with 2 additions and 0 deletions
|
@ -54,6 +54,8 @@ class SearchStore(SQLBaseStore):
|
|||
for clause in clauses:
|
||||
sql += " AND " + clause
|
||||
|
||||
# We add an arbitrary limit here to ensure we don't try to pull the
|
||||
# entire table from the database.
|
||||
sql += " ORDER BY rank DESC LIMIT 500"
|
||||
|
||||
results = yield self._execute(
|
||||
|
|
Loading…
Reference in a new issue