mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-09 03:22:57 +01:00
Don't order by rowid
This commit is contained in:
parent
9115421ace
commit
9e98f1022a
1 changed files with 1 additions and 1 deletions
|
@ -585,7 +585,7 @@ class SQLBaseStore(object):
|
|||
|
||||
def _simple_select_one_txn(self, txn, table, keyvalues, retcols,
|
||||
allow_none=False):
|
||||
select_sql = "SELECT %s FROM %s WHERE %s ORDER BY rowid asc" % (
|
||||
select_sql = "SELECT %s FROM %s WHERE %s" % (
|
||||
", ".join(retcols),
|
||||
table,
|
||||
" AND ".join("%s = ?" % (k) for k in keyvalues)
|
||||
|
|
Loading…
Reference in a new issue